Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit df4518d

Browse filesBrowse files
authored
fix: WebServer - change occurrence of client.flush() to clear() (espressif#10234)
1 parent 6f84a43 commit df4518d
Copy full SHA for df4518d

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎libraries/WebServer/src/Parsing.cpp

Copy file name to clipboardExpand all lines: libraries/WebServer/src/Parsing.cpp
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ bool WebServer::_parseRequest(NetworkClient &client) {
262262
}
263263
_parseArguments(searchStr);
264264
}
265-
client.flush();
265+
client.clear();
266266

267267
log_v("Request: %s", url.c_str());
268268
log_v(" Arguments: %s", searchStr.c_str());

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.