mirror of
https://github.com/godotengine/godot.git
synced 2025-10-20 16:33:30 +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:
parent
e363f404a5
commit
01e5e98312
5 changed files with 5 additions and 5 deletions
|
@ -143,7 +143,7 @@ Error HTTPClientJavaScript::get_response_headers(List<String> *r_response) {
|
|||
return OK;
|
||||
}
|
||||
|
||||
int HTTPClientJavaScript::get_response_body_length() const {
|
||||
int64_t HTTPClientJavaScript::get_response_body_length() const {
|
||||
return godot_js_fetch_body_length_get(js_id);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue