We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e883e2 commit e0e3a77Copy full SHA for e0e3a77
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