This commit is contained in:
DavidXanatos 2023-10-15 14:03:08 +02:00
parent 31977833f2
commit 278be4e396
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

@ -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");
}