Skip to content

Commit a3a6c98

Browse files
committed
Merge pull request #1415 from joostjager/my_changes_on_2.1.0-rc1
Accept-Encoding missing comma added
2 parents b4ef8cf + 3d4e4f8 commit a3a6c98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ bool HTTPClient::sendHeader(const char * type) {
789789
header += "\r\n";
790790

791791
if(!_useHTTP10) {
792-
header += "Accept-Encoding: identity;q=1 chunked;q=0.1 *;q=0\r\n";
792+
header += "Accept-Encoding: identity;q=1,chunked;q=0.1,*;q=0\r\n";
793793
}
794794

795795
if(_base64Authorization.length()) {

0 commit comments

Comments
 (0)