From: Debayan Sutradhar Date: Sun, 16 May 2021 22:09:58 +0530 Subject: Revert "Updated matrix and twitter links" --- Revert "Updated matrix and twitter links" This reverts commit 2e95290ce685f0a5362f99a71458828c6676e17d. --- --- 'a/src/main/java/com/stream_pi/server/window/settings/About/ContactTab.java' +++ b/src/main/java/com/stream_pi/server/window/settings/About/ContactTab.java @@ -19,7 +19,7 @@ public class ContactTab extends ScrollPa getStyleClass().add("about_contact_tab_scroll_pane"); Hyperlink github = new Hyperlink("GitHub"); - github.setOnAction(event -> openWebpage("https://github.com/stream-pi")); + github.setOnAction(event -> openWebpage("https://github.com/Stream-Pi")); Hyperlink discord = new Hyperlink("Discord"); discord.setOnAction(event -> openWebpage("https://discord.gg/BExqGmk")); @@ -28,10 +28,10 @@ public class ContactTab extends ScrollPa website.setOnAction(event -> openWebpage("https://stream-pi.com")); Hyperlink twitter = new Hyperlink("Twitter"); - twitter.setOnAction(event -> openWebpage("https://twitter.com/stream_pi")); + twitter.setOnAction(event -> openWebpage("https://twitter.com/Stream_Pi")); Hyperlink matrix = new Hyperlink("Matrix"); - matrix.setOnAction(event -> openWebpage("https://matrix.to/#/+stream-pi-official:matrix.org")); + matrix.setOnAction(event -> openWebpage("https://matrix.to/#/#stream-pi_general:matrix.org")); VBox vBox = new VBox(github, discord, website, twitter, matrix);