mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
[Net] Fix get_response_body_length for large files.
Parsing was fixed, but not the return value for the exposed getter.
(cherry picked from commit 01e5e98312)
This commit is contained in:
committed by
Rémi Verschelde
parent
dd57c321bf
commit
822da984bb
@@ -611,7 +611,7 @@ Error HTTPClient::poll() {
|
||||
return OK;
|
||||
}
|
||||
|
||||
int HTTPClient::get_response_body_length() const {
|
||||
int64_t HTTPClient::get_response_body_length() const {
|
||||
return body_size;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user