We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ac4812 commit 1843030Copy full SHA for 1843030
libraries/ESP8266WebServer/src/Parsing.cpp
@@ -166,6 +166,7 @@ bool ESP8266WebServer::_parseRequest(WiFiClient& client) {
166
isEncoded = true;
167
} else if (headerValue.startsWith("multipart/")){
168
boundaryStr = headerValue.substring(headerValue.indexOf('=')+1);
169
+ boundaryStr.replace("\"","");
170
isForm = true;
171
}
172
} else if (headerName.equalsIgnoreCase("Content-Length")){
0 commit comments