1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

Merge branch 'master' into master

This commit is contained in:
david gauchard
2022-06-15 23:56:51 +02:00
committed by GitHub
18 changed files with 126 additions and 28 deletions

View File

@ -182,7 +182,7 @@ typename ESP8266WebServerTemplate<ServerType>::ClientFuture ESP8266WebServerTemp
if (!isForm) {
if (contentLength) {
// add key=value: plain={body} (post json or other data)
RequestArgument& arg = _currentArgs[_currentArgCount++];
RequestArgument& arg = _currentArgs[_currentArgCount];
arg.key = F("plain");
arg.value = plainBuf;
_currentArgsHavePlain = 1;