diff --git a/CHANGELOG.md b/CHANGELOG.md index fa6f05b7..dd275304 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ This project adheres to [Semantic Versioning](http://semver.org/). +## [1.11.5 / 5.66.5] - 2023-10- + +### Fixed +- fixed issue with auto updater not offering version updates + + ## [1.11.4 / 5.66.4] - 2023-10-06 diff --git a/SandboxiePlus/SandMan/OnlineUpdater.cpp b/SandboxiePlus/SandMan/OnlineUpdater.cpp index 35edc638..4d617dfa 100644 --- a/SandboxiePlus/SandMan/OnlineUpdater.cpp +++ b/SandboxiePlus/SandMan/OnlineUpdater.cpp @@ -289,7 +289,7 @@ void COnlineUpdater::LoadState() QString COnlineUpdater::GetOnNewUpdateOption() const { - if (!g_CertInfo.active || g_CertInfo.expired); + if (!g_CertInfo.active || g_CertInfo.expired) return "ignore"; // this service requries a valid vcertificate return theConf->GetString("Options/OnNewUpdate", "ignore"); }