Skip to content

Commit a5113e9

Browse files
committed
fix(Automatic Update Checker): Fix missing popup when a new version is available
1 parent 394367f commit a5113e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/update_checker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ void UpdateChecker::checkForUpdate(const QString &version, bool silent)
6969
if (versionAbiggerThanVersionB(newVersion, version))
7070
{
7171
qCInfo(updateChecker) << "New version found:" << newVersion;
72-
if (!silent) emit updateAvailable(newVersion);
72+
emit updateAvailable(newVersion);
7373
return;
7474
}
7575

0 commit comments

Comments
 (0)