Unverified Commit df4518d6 authored by Juraj Andrássy's avatar Juraj Andrássy Committed by GitHub

fix: WebServer - change occurrence of client.flush() to clear() (#10234)

parent 6f84a436
...@@ -262,7 +262,7 @@ bool WebServer::_parseRequest(NetworkClient &client) { ...@@ -262,7 +262,7 @@ bool WebServer::_parseRequest(NetworkClient &client) {
} }
_parseArguments(searchStr); _parseArguments(searchStr);
} }
client.flush(); client.clear();
log_v("Request: %s", url.c_str()); log_v("Request: %s", url.c_str());
log_v(" Arguments: %s", searchStr.c_str()); log_v(" Arguments: %s", searchStr.c_str());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment