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 b0dead2 commit 08fadf1Copy full SHA for 08fadf1
hardware/esp8266com/esp8266/libraries/ESP8266WebServer/src/Parsing.cpp
@@ -109,7 +109,7 @@ bool ESP8266WebServer::_parseRequest(WiFiClient& client) {
109
if (!isForm){
110
if (searchStr != "") searchStr += '&';
111
String bodyLine = client.readStringUntil('\r');
112
- if(bodyLine.startsWith('{') || bodyLine.startsWith('[') || bodyLine.indexOf('=') == -1){
+ if(bodyLine.startsWith("{") || bodyLine.startsWith("[") || bodyLine.indexOf('=') == -1){
113
//plain post json or other data
114
searchStr += "plain";
115
}
0 commit comments