mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-27 18:02:17 +03:00
missingg the equal sign
This commit is contained in:
committed by
Ivan Grokhotkov
parent
3c819e998b
commit
f7212154a6
@ -111,7 +111,7 @@ bool ESP8266WebServer::_parseRequest(WiFiClient& client) {
|
|||||||
String bodyLine = client.readStringUntil('\r');
|
String bodyLine = client.readStringUntil('\r');
|
||||||
if(bodyLine.startsWith("{") || bodyLine.startsWith("[") || bodyLine.indexOf('=') == -1){
|
if(bodyLine.startsWith("{") || bodyLine.startsWith("[") || bodyLine.indexOf('=') == -1){
|
||||||
//plain post json or other data
|
//plain post json or other data
|
||||||
searchStr += "plain";
|
searchStr += "plain=";
|
||||||
}
|
}
|
||||||
searchStr += bodyLine;
|
searchStr += bodyLine;
|
||||||
client.readStringUntil('\n');
|
client.readStringUntil('\n');
|
||||||
|
Reference in New Issue
Block a user