diff options
author | Stanislav Labzyuk <stanislav.labzyuk@gmail.com> | 2024-06-20 15:56:50 +0200 |
---|---|---|
committer | Stanislav Labzyuk <stanislav.labzyuk@gmail.com> | 2024-06-20 15:56:50 +0200 |
commit | 68a10ba6032d594b7c4e3e57fccfa0748602f271 (patch) | |
tree | fb90bad36b7ee12fa6f68324fd84499240162329 /editor/engine_update_label.cpp | |
parent | b75f0485ba15951b87f1d9a2d8dd0fcd55e178e4 (diff) | |
download | redot-engine-68a10ba6032d594b7c4e3e57fccfa0748602f271.tar.gz |
Fix determining the availability of a new version
Diffstat (limited to 'editor/engine_update_label.cpp')
-rw-r--r-- | editor/engine_update_label.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/engine_update_label.cpp b/editor/engine_update_label.cpp index 958093410a..facbfc7c6b 100644 --- a/editor/engine_update_label.cpp +++ b/editor/engine_update_label.cpp @@ -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; } |