From 979946b7bb2cec808198f9194169ea08cce8bb00 Mon Sep 17 00:00:00 2001 From: Sky Date: Fri, 13 Dec 2013 14:58:11 +0000 Subject: First sweep moving URLs to a constants file --- logic/LegacyUpdate.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'logic/LegacyUpdate.cpp') diff --git a/logic/LegacyUpdate.cpp b/logic/LegacyUpdate.cpp index 60dde3e8..e71b270e 100644 --- a/logic/LegacyUpdate.cpp +++ b/logic/LegacyUpdate.cpp @@ -25,6 +25,7 @@ #include #include #include "logger/QsLog.h" +#include "logic/net/URLConstants.h" LegacyUpdate::LegacyUpdate(BaseInstance *inst, bool only_prepare, QObject *parent) : Task(parent), m_inst(inst), m_only_prepare(only_prepare) @@ -263,7 +264,7 @@ void LegacyUpdate::jarStart() QString version_id = inst->intendedVersionId(); QString localPath = version_id + "/" + version_id + ".jar"; - QString urlstr = "http://s3.amazonaws.com/Minecraft.Download/versions/" + localPath; + QString urlstr = "http://" + URLConstants::AWS_DOWNLOAD_VERSIONS + localPath; auto dljob = new NetJob("Minecraft.jar for version " + version_id); -- cgit v1.2.3