diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-02-13 16:41:06 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-02-13 16:41:26 +0100 |
commit | ea08ede4c343c14931b4da327af7da7e0ab5b3a9 (patch) | |
tree | 315a289fb6e5e2f3679ab3731f4c416823450786 /logic | |
parent | b7f75637fa1bfb6a25923c8cdecc9489e4aee321 (diff) | |
download | MultiMC-ea08ede4c343c14931b4da327af7da7e0ab5b3a9.tar MultiMC-ea08ede4c343c14931b4da327af7da7e0ab5b3a9.tar.gz MultiMC-ea08ede4c343c14931b4da327af7da7e0ab5b3a9.tar.lz MultiMC-ea08ede4c343c14931b4da327af7da7e0ab5b3a9.tar.xz MultiMC-ea08ede4c343c14931b4da327af7da7e0ab5b3a9.zip |
GH-1483 Use the new version index URL
Diffstat (limited to 'logic')
-rw-r--r-- | logic/minecraft/MinecraftVersionList.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/logic/minecraft/MinecraftVersionList.cpp b/logic/minecraft/MinecraftVersionList.cpp index 8d52c23b..471e706b 100644 --- a/logic/minecraft/MinecraftVersionList.cpp +++ b/logic/minecraft/MinecraftVersionList.cpp @@ -452,8 +452,7 @@ void MCVListLoadTask::executeTask() { setStatus(tr("Loading instance version list...")); auto worker = ENV.qnam(); - vlistReply = worker->get(QNetworkRequest( - QUrl("http://" + URLConstants::AWS_DOWNLOAD_VERSIONS + "versions.json"))); + vlistReply = worker->get(QNetworkRequest(QUrl("https://launchermeta.mojang.com/mc/game/version_manifest.json"))); connect(vlistReply, SIGNAL(finished()), this, SLOT(list_downloaded())); } |