diff options
author | Petr Mrázek <peterix@gmail.com> | 2020-01-07 08:56:00 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2020-01-07 08:56:00 +0100 |
commit | 3581f5384f1270b7cc31d2cc8b610c37cd3a794e (patch) | |
tree | 3b969c5a9e779b8114430f88096dfe399894cede /application | |
parent | 480b298635917074a87562e3a15836e7ba29da49 (diff) | |
download | MultiMC-3581f5384f1270b7cc31d2cc8b610c37cd3a794e.tar MultiMC-3581f5384f1270b7cc31d2cc8b610c37cd3a794e.tar.gz MultiMC-3581f5384f1270b7cc31d2cc8b610c37cd3a794e.tar.lz MultiMC-3581f5384f1270b7cc31d2cc8b610c37cd3a794e.tar.xz MultiMC-3581f5384f1270b7cc31d2cc8b610c37cd3a794e.zip |
GH-2880 make services status widget open a valid page
https://help.mojang.com/ no longer has API status
Diffstat (limited to 'application')
-rw-r--r-- | application/widgets/ServerStatus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/widgets/ServerStatus.cpp b/application/widgets/ServerStatus.cpp index a7016c0c..ce0aed9c 100644 --- a/application/widgets/ServerStatus.cpp +++ b/application/widgets/ServerStatus.cpp @@ -125,7 +125,7 @@ void ServerStatus::addStatus(QString key, QString name) void ServerStatus::clicked() { - DesktopServices::openUrl(QUrl("https://help.mojang.com/")); + DesktopServices::openUrl(QUrl("https://github.com/MultiMC/MultiMC5/wiki/Mojang-Services-Status")); } void ServerStatus::setStatus(QString key, int value) |