Skip to content

Commit 561426c

Browse files
ascillatodevyte
authored andcommitted
Fix webserver unresponsiveness (#5259)
1 parent e549355 commit 561426c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/ESP8266WiFi/src/include/ClientContext.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ class ClientContext
333333
last_sent = millis();
334334
}
335335

336-
esp_yield(); // from sys or os context
336+
delay(0); // from sys or os context
337337

338338
if ((state() != ESTABLISHED) || (sndbuf == TCP_SND_BUF)) {
339339
break;

0 commit comments

Comments
 (0)