Skip to content

Commit

Permalink
Fix to parse parameters in the URL of a POST with empty content. (esp…
Browse files Browse the repository at this point in the history
  • Loading branch information
teejaydub authored and igrr committed Aug 7, 2017
1 parent 1bd1de0 commit 3b60f75
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions libraries/ESP8266WebServer/src/Parsing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,9 @@ bool ESP8266WebServer::_parseRequest(WiFiClient& client) {
DEBUG_OUTPUT.println(plainBuf);
#endif
free(plainBuf);
} else {
// No content - but we can still have arguments in the URL.
_parseArguments(searchStr);
}
}

Expand Down

0 comments on commit 3b60f75

Please sign in to comment.