diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-12-11 08:34:22 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-12-11 08:34:22 +0100 |
commit | bace3c2eab1effd556ab2c704b26220312e05eb3 (patch) | |
tree | 8016c0ff16419127d6a701f14bda9ab1147f63dd /logic/OneSixUpdate.cpp | |
parent | 018f3289933be0b03364975528c1d8071f486e62 (diff) | |
download | MultiMC-bace3c2eab1effd556ab2c704b26220312e05eb3.tar MultiMC-bace3c2eab1effd556ab2c704b26220312e05eb3.tar.gz MultiMC-bace3c2eab1effd556ab2c704b26220312e05eb3.tar.lz MultiMC-bace3c2eab1effd556ab2c704b26220312e05eb3.tar.xz MultiMC-bace3c2eab1effd556ab2c704b26220312e05eb3.zip |
Swap https -> http for asset indexes
Diffstat (limited to 'logic/OneSixUpdate.cpp')
-rw-r--r-- | logic/OneSixUpdate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/logic/OneSixUpdate.cpp b/logic/OneSixUpdate.cpp index 44314e1e..c4528f91 100644 --- a/logic/OneSixUpdate.cpp +++ b/logic/OneSixUpdate.cpp @@ -200,7 +200,7 @@ void OneSixUpdate::assetIndexStart() OneSixInstance *inst = (OneSixInstance *)m_inst; std::shared_ptr<OneSixVersion> version = inst->getFullVersion(); QString assetName = version->assets; - QUrl indexUrl("https://s3.amazonaws.com/Minecraft.Download/indexes/" + assetName + ".json"); + QUrl indexUrl("http://s3.amazonaws.com/Minecraft.Download/indexes/" + assetName + ".json"); QString localPath = assetName + ".json"; auto job = new NetJob("Asset index for " + inst->name()); |