From: Debayan Sutradhar Date: Mon, 17 May 2021 21:17:43 +0530 Subject: Revert "Revert "Revert "Updated matrix and twitter links""" --- Revert "Revert "Revert "Updated matrix and twitter links""" This reverts commit 57df37761beae5c79f318efe4103604fa8cd618d. --- --- '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);