diff options
author | dada513 <dada513@protonmail.com> | 2022-02-10 13:14:25 +0100 |
---|---|---|
committer | dada513 <dada513@protonmail.com> | 2022-02-10 13:14:25 +0100 |
commit | 70f8cb81b8bbdf8bc2f4931981002ab56125361d (patch) | |
tree | ede5ce1b3b67cfd7c25061fb49ee4315c6e44c41 /launcher | |
parent | f8ca6b4867d1b01310269293426c65ef78c5ec67 (diff) | |
download | PrismLauncher-70f8cb81b8bbdf8bc2f4931981002ab56125361d.tar.gz PrismLauncher-70f8cb81b8bbdf8bc2f4931981002ab56125361d.tar.bz2 PrismLauncher-70f8cb81b8bbdf8bc2f4931981002ab56125361d.zip |
Initial RSS re-add and removed hardcoded strings
Diffstat (limited to 'launcher')
-rw-r--r-- | launcher/ui/MainWindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/ui/MainWindow.cpp b/launcher/ui/MainWindow.cpp index 3dcc8ee9..32b27afb 100644 --- a/launcher/ui/MainWindow.cpp +++ b/launcher/ui/MainWindow.cpp @@ -1687,7 +1687,7 @@ void MainWindow::on_actionReportBug_triggered() void MainWindow::on_actionMoreNews_triggered() { - DesktopServices::openUrl(QUrl("https://multimc.org/posts.html")); + DesktopServices::openUrl(QUrl(BuildConfig.NEWS_OPEN_URL)); } void MainWindow::newsButtonClicked() @@ -1699,7 +1699,7 @@ void MainWindow::newsButtonClicked() } else { - DesktopServices::openUrl(QUrl("https://multimc.org/posts.html")); + DesktopServices::openUrl(QUrl(BuildConfig.NEWS_OPEN_URL)); } } |