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
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ WiFiClient client;

// Variables to validate
// response from S3
int contentLength = 0;
long contentLength = 0;
bool isValidContentType = false;

// Your SSID and PSWD that the chip needs
Expand Down Expand Up @@ -120,7 +120,7 @@ void execOTA() {
// extract headers here
// Start with content length
if (line.startsWith("Content-Length: ")) {
contentLength = atoi((getHeaderValue(line, "Content-Length: ")).c_str());
contentLength = atol((getHeaderValue(line, "Content-Length: ")).c_str());
Serial.println("Got " + String(contentLength) + " bytes from server");
}

Expand Down