mirror of
https://github.com/godotengine/godot.git
synced 2024-11-12 23:24:26 +00:00
Fix HTTPClient _request using wrong size
This only affects HttpClient in GDScript.
(cherry picked from commit 1514376e46
)
This commit is contained in:
parent
72d561c89f
commit
acd975a45a
@ -63,8 +63,9 @@ Error HTTPClient::_request_raw(Method p_method, const String &p_url, const Vecto
|
||||
}
|
||||
|
||||
Error HTTPClient::_request(Method p_method, const String &p_url, const Vector<String> &p_headers, const String &p_body) {
|
||||
int size = p_body.length();
|
||||
return request(p_method, p_url, p_headers, size > 0 ? (const uint8_t *)p_body.utf8().get_data() : nullptr, size);
|
||||
CharString body_utf8 = p_body.utf8();
|
||||
int size = body_utf8.length();
|
||||
return request(p_method, p_url, p_headers, size > 0 ? (const uint8_t *)body_utf8.get_data() : nullptr, size);
|
||||
}
|
||||
|
||||
String HTTPClient::query_string_from_dict(const Dictionary &p_dict) {
|
||||
|
Loading…
Reference in New Issue
Block a user