summaryrefslogtreecommitdiffstats
path: root/editor
diff options
context:
space:
mode:
authorSpartan322 <Megacake1234@gmail.com>2024-11-03 05:37:36 -0500
committerSpartan322 <Megacake1234@gmail.com>2024-11-03 05:40:13 -0500
commit6c1a41560fe4129c5272cefafae5466d2eeedaa7 (patch)
treeb209fb242f6949c792ee6d22d9daf1d31ecfaa72 /editor
parent9bbd8033be575a39f36cb2bc06b6eaceeeefe4d6 (diff)
downloadredot-engine-6c1a41560fe4129c5272cefafae5466d2eeedaa7.tar.gz
Fix ignoring status_version for updating
Diffstat (limited to 'editor')
-rw-r--r--editor/engine_update_label.cpp5
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"), &current_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 {