diff options
| author | Chris Bessent <lost.dragonist@gmail.com> | 2021-08-26 17:57:08 -0700 |
|---|---|---|
| committer | Chris Bessent <lost.dragonist@gmail.com> | 2021-08-26 17:57:08 -0700 |
| commit | 0e9da8d4f582592f5eb9c0129ffcbcda0564d105 (patch) | |
| tree | ec8020679c2f2de203e937f7ed8311b9ef047d03 /src | |
| parent | ee745353d9cb048c2928700ca7eb9c40b0186b9a (diff) | |
Fix checking for updates when no installedFile
Diffstat (limited to 'src')
| -rw-r--r-- | src/mainwindow.cpp | 5 |
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); |
