1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-07 12:30:27 +00:00

[Net] Fix get_response_body_length for large files.

Parsing was fixed, but not the return value for the exposed getter.
This commit is contained in:
Fabio Alessandrelli
2022-01-23 01:28:35 +01:00
parent e363f404a5
commit 01e5e98312
5 changed files with 5 additions and 5 deletions

View File

@@ -534,7 +534,7 @@ Error HTTPClientTCP::poll() {
return OK;
}
int HTTPClientTCP::get_response_body_length() const {
int64_t HTTPClientTCP::get_response_body_length() const {
return body_size;
}