Skip to content

Commit

Permalink
fix(httpc): Fix data read was less than expected (#9998)
Browse files Browse the repository at this point in the history
  • Loading branch information
me-no-dev authored Jul 10, 2024
1 parent 6debc5c commit 60b6faa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/HTTPClient/src/HTTPClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1362,7 +1362,7 @@ int HTTPClient::writeToStreamDataBlock(Stream *stream, int size) {
// some time for the stream
delay(1);

int leftBytes = (readBytes - bytesWrite);
int leftBytes = (bytesRead - bytesWrite);

// retry to send the missed bytes
bytesWrite = stream->write((buff + bytesWrite), leftBytes);
Expand All @@ -1385,7 +1385,7 @@ int HTTPClient::writeToStreamDataBlock(Stream *stream, int size) {

// count bytes to read left
if (len > 0) {
len -= readBytes;
len -= bytesRead;
}

delay(0);
Expand Down

0 comments on commit 60b6faa

Please sign in to comment.