Skip to content

Commit 08fadf1

Browse files
John Doeigrr
authored andcommitted
duh...
1 parent b0dead2 commit 08fadf1

File tree

1 file changed

+1
-1
lines changed
  • hardware/esp8266com/esp8266/libraries/ESP8266WebServer/src

1 file changed

+1
-1
lines changed

hardware/esp8266com/esp8266/libraries/ESP8266WebServer/src/Parsing.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ bool ESP8266WebServer::_parseRequest(WiFiClient& client) {
109109
if (!isForm){
110110
if (searchStr != "") searchStr += '&';
111111
String bodyLine = client.readStringUntil('\r');
112-
if(bodyLine.startsWith('{') || bodyLine.startsWith('[') || bodyLine.indexOf('=') == -1){
112+
if(bodyLine.startsWith("{") || bodyLine.startsWith("[") || bodyLine.indexOf('=') == -1){
113113
//plain post json or other data
114114
searchStr += "plain";
115115
}

0 commit comments

Comments
 (0)