mirror of
https://github.com/esp8266/Arduino.git
synced 2025-04-25 20:02:37 +03:00
Fix missing separator between get and post arguments (#2222)
* fix urlDecode points Fixes: https://github.com/esp8266/Arduino/issues/1989 https://github.com/esp8266/Arduino/issues/2198 * Add missing separator between get and plain post arguments
This commit is contained in:
parent
dd1a7e91b8
commit
e7a529eb45
@ -183,6 +183,7 @@ bool ESP8266WebServer::_parseRequest(WiFiClient& client) {
|
||||
return false;
|
||||
}
|
||||
if (contentLength > 0) {
|
||||
if (searchStr != "") searchStr += '&';
|
||||
if(isEncoded){
|
||||
//url encoded form
|
||||
String decoded = urlDecode(plainBuf);
|
||||
|
Loading…
x
Reference in New Issue
Block a user