Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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