Disconnect while downloading

Previously if a disconnect occured while downloading a non recoverable error was displayed. This PR attempts to fix this by making sure `request_completed` signal is emitted with an `STATUS_CONNECTION_ERROR` response code.
This commit is contained in:
Zak 2020-01-17 20:21:49 +02:00
parent c6f0c0d12e
commit 70c39737db

View file

@ -349,6 +349,8 @@ bool HTTPRequest::_update_connection() {
}
client->poll();
if (client->get_status() != HTTPClient::STATUS_BODY)
break; // State changed after this poll, will check at next iteration.
PoolByteArray chunk = client->read_response_body_chunk();
downloaded += chunk.size();