Skip to content

Commit

Permalink
Update web_server.cpp
Browse files Browse the repository at this point in the history
missing code eror update
  • Loading branch information
luc-github committed Sep 3, 2019
1 parent e7600a5 commit dd03459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Grbl_Esp32/web_server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -986,7 +986,7 @@ void Web_Server::pushError(int code, const char * st, bool web_error, uint16_t t
if (web_error != 0) {
if (_webserver) {
if (_webserver->client().available() > 0) {
_webserver->send (500, "text/xml", st);
_webserver->send (web_error, "text/xml", st);
}
}
}
Expand Down

0 comments on commit dd03459

Please sign in to comment.