diff options
author | Spartan322 <Megacake1234@gmail.com> | 2024-11-03 05:37:36 -0500 |
---|---|---|
committer | Spartan322 <Megacake1234@gmail.com> | 2024-11-03 05:40:13 -0500 |
commit | 6c1a41560fe4129c5272cefafae5466d2eeedaa7 (patch) | |
tree | b209fb242f6949c792ee6d22d9daf1d31ecfaa72 /editor | |
parent | 9bbd8033be575a39f36cb2bc06b6eaceeeefe4d6 (diff) | |
download | redot-engine-6c1a41560fe4129c5272cefafae5466d2eeedaa7.tar.gz |
Fix ignoring status_version for updating
Diffstat (limited to 'editor')
-rw-r--r-- | editor/engine_update_label.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/editor/engine_update_label.cpp b/editor/engine_update_label.cpp index ae9c1cce39..8105e15769 100644 --- a/editor/engine_update_label.cpp +++ b/editor/engine_update_label.cpp @@ -141,7 +141,8 @@ void EngineUpdateLabel::_http_request_completed(int p_result, int p_response_cod break; } - int current_version_index; + int current_version_index = current_version_info.get("status_version", 0); + current_version_index = current_version_index > 0 ? current_version_index : DEV_VERSION; VersionType current_version_type = _get_version_type(current_version_info.get("status", "unknown"), ¤t_version_index); if (int(release_type) > int(current_version_type)) { @@ -231,7 +232,7 @@ EngineUpdateLabel::VersionType EngineUpdateLabel::_get_version_type(const String } } - if (r_index) { + if (r_index && *r_index == DEV_VERSION) { if (index_string.is_empty()) { *r_index = DEV_VERSION; } else { |