We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4638000 commit 84daa1aCopy full SHA for 84daa1a
libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp
@@ -855,7 +855,7 @@ bool HTTPClient::sendHeader(const char * type)
855
856
header += _headers + "\r\n";
857
858
- return (_tcp->write(header.c_str(), header.length()) == header.length());
+ return (_tcp->write((const uint8_t *) header.c_str(), header.length()) == header.length());
859
}
860
861
/**
0 commit comments