summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorChris Bessent <lost.dragonist@gmail.com>2021-08-26 17:57:08 -0700
committerChris Bessent <lost.dragonist@gmail.com>2021-08-26 17:57:08 -0700
commit0e9da8d4f582592f5eb9c0129ffcbcda0564d105 (patch)
treeec8020679c2f2de203e937f7ed8311b9ef047d03 /src/mainwindow.cpp
parentee745353d9cb048c2928700ca7eb9c40b0186b9a (diff)
Fix checking for updates when no installedFile
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 585ad00e..4d1c16ac 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -3019,6 +3019,11 @@ void MainWindow::nxmUpdatesAvailable(QString gameName, int modID, QVariant userD
}
}
}
+ else {
+ // No installedFile means we don't know what to look at for a version so
+ // just get the global mod version
+ requiresInfo = true;
+ }
if (newModStatus > 0) {
mod->setNexusFileStatus(newModStatus);