summaryrefslogtreecommitdiff
path: root/src/downloadmanager.cpp
diff options
context:
space:
mode:
authorTannin <devnull@localhost>2014-07-21 19:14:24 +0200
committerTannin <devnull@localhost>2014-07-21 19:14:24 +0200
commit9879aae5757e0c2ca930b38c6b7a4aeb4715d2d9 (patch)
tree43ccc85bf5998c4e37abc7cdb627b49276cc441b /src/downloadmanager.cpp
parentcc9827cdda5776a4fd540a2ab0fb8a08ec9f75a7 (diff)
- download-list will no longer show a file as having incomplete data if there is no file version
- added a new mod column with icons displaying the content of the mod - MO now differentiates between mods using an internal name that disambiguates between foreign and regular mods
Diffstat (limited to 'src/downloadmanager.cpp')
-rw-r--r--src/downloadmanager.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/downloadmanager.cpp b/src/downloadmanager.cpp
index 391ac7b9..856ca79c 100644
--- a/src/downloadmanager.cpp
+++ b/src/downloadmanager.cpp
@@ -831,7 +831,7 @@ bool DownloadManager::isInfoIncomplete(int index) const
// other repositories currently don't support re-querying info anyway
return false;
}
- return (info->m_FileInfo->fileID == 0) || (info->m_FileInfo->modID == 0) || !info->m_FileInfo->version.isValid();
+ return (info->m_FileInfo->fileID == 0) || (info->m_FileInfo->modID == 0);
}
@@ -1181,7 +1181,6 @@ void DownloadManager::nxmFileInfoAvailable(int modID, int fileID, QVariant userD
QVariantMap result = resultData.toMap();
info->name = result["name"].toString();
- qDebug("file info received for %s", qPrintable(info->name));
info->version.parse(result["version"].toString());
if (!info->version.isValid()) {
info->version = info->newestVersion;