From ae1409125f44142a54b93e5276836e43389c0aa7 Mon Sep 17 00:00:00 2001 From: Joost Jager Date: Tue, 12 Jan 2016 21:25:27 +0100 Subject: [PATCH] Accept-Encoding missing comma added --- libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp b/libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp index 705a5925b..6ef11f9ba 100644 --- a/libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp +++ b/libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp @@ -789,7 +789,7 @@ bool HTTPClient::sendHeader(const char * type) { header += "\r\n"; if(!_useHTTP10) { - header += "Accept-Encoding: identity;q=1 chunked;q=0.1 *;q=0\r\n"; + header += "Accept-Encoding: identity;q=1,chunked;q=0.1,*;q=0\r\n"; } if(_base64Authorization.length()) {