We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c7e7ae commit 9feab83Copy full SHA for 9feab83
check_for_updates.cpp
@@ -111,7 +111,7 @@ void Check_for_updates::replyFinished()
111
// return if the this version is the latest
112
if ((this_major_version > latest_major_version)
113
|| ((this_major_version == latest_major_version) && (this_minor_version > latest_minor_version))
114
- || ((this_major_version == latest_major_version) && (this_minor_version == latest_minor_version) && (this_path_version > latest_patch_version)))
+ || ((this_major_version == latest_major_version) && (this_minor_version == latest_minor_version) && (this_path_version >= latest_patch_version)))
115
{
116
reply->deleteLater();
117
0 commit comments