mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-23 08:45:22 +03:00
webserver: do not count "plain" in argument list (#6768)
* webserver: do not count "plain" in argument list (it is still available though)
This commit is contained in:
@ -208,6 +208,7 @@ bool ESP8266WebServerTemplate<ServerType>::_parseRequest(ClientType& client) {
|
||||
RequestArgument& arg = _currentArgs[_currentArgCount++];
|
||||
arg.key = F("plain");
|
||||
arg.value = plainBuf;
|
||||
_currentArgsHavePlain = 1;
|
||||
}
|
||||
} else { // isForm is true
|
||||
// here: content is not yet read (plainBuf is still empty)
|
||||
|
Reference in New Issue
Block a user