8000 fix parseArgument by d-a-v · Pull Request #5230 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

fix parseArgument #5230

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 16 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix alexa fix (well, trying...)
  • Loading branch information
d-a-v committed Oct 12, 2018
commit bdf2aceba4e318d73051e1a32a5633baedd1e5f3
2 changes: 1 addition & 1 deletion libraries/ESP8266WebServer/src/Parsing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ bool ESP8266WebServer::_parseRequest(WiFiClient& client) {
}
_parseArguments(searchStr);
if ( !isEncoded
|| (0 == _currentArgCount) // Alexa fix https://github.com/arendst/Sonoff-Tasmota/issues/1639#issuecomment-359253011
|| (hasSearch == -1) // Alexa fix (malformed header with form content)
) {
//plain post json or other data
RequestArgument& arg = _currentArgs[_currentArgCount++];
Expand Down
0