Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
facontidavide committed Jan 16, 2024
1 parent 231dd6a commit f771892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plotjuggler_app/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ void OpenNewReleaseDialog(QNetworkReply* reply)
url = "https://bit.ly/plotjuggler-update";
}

if (online_number >= current_number && online_number >= dontshow_number)
if (online_number > current_number && online_number > dontshow_number)
{
NewReleaseDialog* dialog = new NewReleaseDialog(nullptr, tag_name, name, url);
dialog->exec();
Expand Down

0 comments on commit f771892

Please sign in to comment.