1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-06 05:21:22 +03:00

missingg the equal sign

This commit is contained in:
John Doe 2015-07-05 21:19:22 +03:00 committed by Ivan Grokhotkov
parent 3c819e998b
commit f7212154a6

View File

@ -111,7 +111,7 @@ bool ESP8266WebServer::_parseRequest(WiFiClient& client) {
String bodyLine = client.readStringUntil('\r');
if(bodyLine.startsWith("{") || bodyLine.startsWith("[") || bodyLine.indexOf('=') == -1){
//plain post json or other data
searchStr += "plain";
searchStr += "plain=";
}
searchStr += bodyLine;
client.readStringUntil('\n');