1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

Fix installation of multiple mods at once, e.g. during setup

This commit is contained in:
Ivan Savenko 2023-04-14 12:47:13 +03:00
parent 5dd1d5bf3f
commit a9aa751ba0
2 changed files with 5 additions and 3 deletions

View File

@ -20,12 +20,12 @@ CDownloadManager::CDownloadManager()
void CDownloadManager::downloadFile(const QUrl & url, const QString & file)
{
filename = file;
QNetworkRequest request(url);
FileEntry entry;
entry.file.reset(new QFile(CLauncherDirs::get().downloadsPath() + '/' + file));
entry.bytesReceived = 0;
entry.totalSize = 0;
entry.filename = file;
if(entry.file->open(QIODevice::WriteOnly | QIODevice::Truncate))
{
@ -68,10 +68,13 @@ void CDownloadManager::downloadFinished(QNetworkReply * reply)
if(possibleRedirectUrl.isValid())
{
QString filename;
for(int i = 0; i< currentDownloads.size(); ++i)
{
if(currentDownloads[i].file == file.file)
{
filename = currentDownloads[i].filename;
currentDownloads.removeAt(i);
break;
}

View File

@ -29,14 +29,13 @@ class CDownloadManager : public QObject
QNetworkReply * reply;
QSharedPointer<QFile> file;
QString filename;
Status status;
qint64 bytesReceived;
qint64 totalSize;
};
QStringList encounteredErrors;
QString filename;
QNetworkAccessManager manager;