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

Merge pull request #35246 from zaksnet/disconnect-while-downloading

Disconnect while downloading
This commit is contained in:
Fabio Alessandrelli
2021-03-02 12:42:52 +01:00
committed by GitHub

View File

@@ -387,6 +387,9 @@ bool HTTPRequest::_update_connection() {
}
client->poll();
if (client->get_status() != HTTPClient::STATUS_BODY) {
return false;
}
PackedByteArray chunk = client->read_response_body_chunk();
downloaded.add(chunk.size());