Removed race web page race condition in nextionHandleInput

Removed call to webServer.handleClient() in nextionHandleInput() which could cause the event loop() to lock up.
This commit is contained in:
Jason Pelzer 2021-03-18 22:54:39 -04:00 committed by GitHub
parent f8d647f084
commit d54ba313f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -812,7 +812,6 @@ void nextionHandleInput()
nextionProcessInput(); nextionProcessInput();
} }
webServer.handleClient(); // webServer loop
telnetHandleClient(); // telnet client loop telnetHandleClient(); // telnet client loop
yield(); yield();
} }