summaryrefslogtreecommitdiffstats
path: root/logic/net/FileDownload.cpp
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2013-11-17 11:44:18 +0100
committerPetr Mrázek <peterix@gmail.com>2013-11-17 11:44:18 +0100
commit210629e274a08c592d8f38f7b382c1c5a05a7ab1 (patch)
treea32ac2426cf6c45c061c05b347f95f2a68439d5a /logic/net/FileDownload.cpp
parent2a45302dfc8d63c627fd1164ef84f434f40bd917 (diff)
downloadMultiMC-210629e274a08c592d8f38f7b382c1c5a05a7ab1.tar
MultiMC-210629e274a08c592d8f38f7b382c1c5a05a7ab1.tar.gz
MultiMC-210629e274a08c592d8f38f7b382c1c5a05a7ab1.tar.lz
MultiMC-210629e274a08c592d8f38f7b382c1c5a05a7ab1.tar.xz
MultiMC-210629e274a08c592d8f38f7b382c1c5a05a7ab1.zip
Use the forge mirrors for downloading forge libraries
Let's hope we never, ever see a forge download error again.
Diffstat (limited to 'logic/net/FileDownload.cpp')
-rw-r--r--logic/net/FileDownload.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/logic/net/FileDownload.cpp b/logic/net/FileDownload.cpp
index 6b2aa66f..239af351 100644
--- a/logic/net/FileDownload.cpp
+++ b/logic/net/FileDownload.cpp
@@ -25,7 +25,6 @@ FileDownload::FileDownload(QUrl url, QString target_path) : NetAction()
m_target_path = target_path;
m_check_md5 = false;
m_status = Job_NotStarted;
- m_opened_for_saving = false;
}
void FileDownload::start()
@@ -113,7 +112,7 @@ void FileDownload::downloadFinished()
void FileDownload::downloadReadyRead()
{
- if (!m_opened_for_saving)
+ if (!m_output_file.isOpen())
{
if (!m_output_file.open(QIODevice::WriteOnly))
{
@@ -124,7 +123,6 @@ void FileDownload::downloadReadyRead()
emit failed(index_within_job);
return;
}
- m_opened_for_saving = true;
}
m_output_file.write(m_reply->readAll());
}