Skip to content

Commit

Permalink
Fix determining the availability of a new version
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkMessiah committed Jun 20, 2024
1 parent b75f048 commit 68a10ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/engine_update_label.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ void EngineUpdateLabel::_http_request_completed(int p_result, int p_response_cod
break;
}

if (int(release_type) == int(current_version_type) && release_index < current_version_index) {
if (int(release_type) == int(current_version_type) && release_index <= current_version_index) {
break;
}

Expand Down

0 comments on commit 68a10ba

Please sign in to comment.