summaryrefslogtreecommitdiff
path: root/src/gui/windows/updaterwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/windows/updaterwindow.cpp')
-rw-r--r--src/gui/windows/updaterwindow.cpp15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/gui/windows/updaterwindow.cpp b/src/gui/windows/updaterwindow.cpp
index 4c1a94a13..e2c1b6128 100644
--- a/src/gui/windows/updaterwindow.cpp
+++ b/src/gui/windows/updaterwindow.cpp
@@ -560,15 +560,16 @@ void UpdaterWindow::download()
if (mDownloadStatus == UPDATE_PATCH)
{
mDownload = new Net::Download(this,
- "http://manaplus.org/update/" + mCurrentFile,
+ branding.getStringValue("updateMirror1") + mCurrentFile,
&updateProgress,
true, false, mValidateXml);
- mDownload->addMirror("http://www.manaplus.org/update/"
- + mCurrentFile);
- mDownload->addMirror("http://www2.manaplus.org/update/"
- + mCurrentFile);
- mDownload->addMirror("http://www3.manaplus.org/update/"
- + mCurrentFile);
+ for (int f = 2; f < 8; f ++)
+ {
+ const std::string url = branding.getStringValue(
+ "updateMirror" + toString(f));
+ if (!url.empty())
+ mDownload->addMirror(url + mCurrentFile);
+ }
}
else
{