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

This commit is contained in:
Juraj Andrássy 2024-08-28 08:53:59 +02:00 committed by GitHub
parent 6f84a43611
commit df4518d6a1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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());