mirror of
https://github.com/godotengine/godot.git
synced 2024-11-10 06:03:09 +00:00
Fix determining the availability of a new version
This commit is contained in:
parent
b75f0485ba
commit
68a10ba603
@ -146,7 +146,7 @@ void EngineUpdateLabel::_http_request_completed(int p_result, int p_response_cod
|
|||||||
break;
|
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;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user