fix: WebServer - change occurrence of client.flush() to clear() (#10234)
This commit is contained in:
parent
6f84a43611
commit
df4518d6a1
1 changed files with 1 additions and 1 deletions
|
|
@ -262,7 +262,7 @@ bool WebServer::_parseRequest(NetworkClient &client) {
|
|||
}
|
||||
_parseArguments(searchStr);
|
||||
}
|
||||
client.flush();
|
||||
client.clear();
|
||||
|
||||
log_v("Request: %s", url.c_str());
|
||||
log_v(" Arguments: %s", searchStr.c_str());
|
||||
|
|
|
|||
Loading…
Reference in a new issue