diff options
| author | Al <26797547+Al12rs@users.noreply.github.com> | 2020-06-09 07:34:45 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-09 07:34:45 -0700 |
| commit | da66cb4917c31d574ab3f6c37d21644c1b6bf78f (patch) | |
| tree | 98a0c8277b43c5cd2ecac9c30b27f5232209a7b1 /src/modinfo.cpp | |
| parent | b548fd37e4da5b5f91638f2a004d918911308f90 (diff) | |
| parent | a565472b829c209c6481b61ff5308bf7a76c69bf (diff) | |
Merge pull request #1118 from Al12rs/nexus_requests_leak
Fix consecutive mod update checks checking some mods again
Diffstat (limited to 'src/modinfo.cpp')
| -rw-r--r-- | src/modinfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modinfo.cpp b/src/modinfo.cpp index a8e6a55b..826aa5c9 100644 --- a/src/modinfo.cpp +++ b/src/modinfo.cpp @@ -300,7 +300,7 @@ bool ModInfo::checkAllForUpdate(PluginContainer *pluginContainer, QObject *recei bool updatesAvailable = true; QDateTime earliest = QDateTime::currentDateTimeUtc(); - QDateTime latest; + QDateTime latest = QDateTime::fromMSecsSinceEpoch(0); std::set<QString> games; for (auto mod : s_Collection) { if (mod->canBeUpdated()) { |
