summaryrefslogtreecommitdiff
path: root/src/downloadmanager.cpp
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-11-27 12:45:55 -0500
committerGitHub <noreply@github.com>2019-11-27 12:45:55 -0500
commit892a19bfc613bbc6d157eced8356314026febbac (patch)
tree90a9a40896a08e064cf0f5cfd27ace47b50ce65f /src/downloadmanager.cpp
parent146360542d4ba186ca38002f618e974ed1b1766a (diff)
parent21cddd0ad3cef165c3860c2031b4cd00802c499d (diff)
Merge pull request #906 from isanae/various-fixes
Collection of small fixes
Diffstat (limited to 'src/downloadmanager.cpp')
-rw-r--r--src/downloadmanager.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/downloadmanager.cpp b/src/downloadmanager.cpp
index c84d4bd4..3143a22e 100644
--- a/src/downloadmanager.cpp
+++ b/src/downloadmanager.cpp
@@ -996,8 +996,8 @@ void DownloadManager::queryInfoMd5(int index)
QCryptographicHash hash(QCryptographicHash::Md5);
const qint64 progressStep = 10 * 1024 * 1024;
QProgressDialog progress(tr("Hashing download file '%1'").arg(info->m_FileName),
- tr("Cancel"),
- 0,
+ tr("Cancel"),
+ 0,
downloadFile.size() / progressStep);
progress.setWindowModality(Qt::WindowModal);
progress.setMinimumDuration(1000);
@@ -1606,7 +1606,7 @@ void DownloadManager::nxmFilesAvailable(QString, int, QVariant userData, QVarian
emit showMessage(tr("No matching file found on Nexus! Maybe this file is no longer available or it was renamed?"));
} else {
SelectionDialog selection(tr("No file on Nexus matches the selected file by name. Please manually choose the correct one."));
- std::sort(files.begin(), files.end(), [](const QVariant& lhs, const QVariant& rhs)
+ std::sort(files.begin(), files.end(), [](const QVariant& lhs, const QVariant& rhs)
{return lhs.toMap()["uploaded_timestamp"].toInt() > rhs.toMap()["uploaded_timestamp"].toInt();});
for (QVariant file : files) {
QVariantMap fileInfo = file.toMap();
@@ -1692,7 +1692,6 @@ static int evaluateFileInfoMap(
}
if (!found) {
- log::error("server '{}' not found while sorting by preference", name);
return 0;
}