Skip to content

Commit

Permalink
Temporary bugfix for bug introduced by arduino-esp32 v.2.0.12 and above
Browse files Browse the repository at this point in the history
  • Loading branch information
fredlcore committed Sep 29, 2023
1 parent 22c209b commit 099f6a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion BSB_LAN/BSB_LAN.ino
Original file line number Diff line number Diff line change
Expand Up @@ -7070,7 +7070,8 @@ void loop() {
// give the web browser time to receive the data
delay(1);
// close the connection:
client.flush();
// Temporarily disable client.flush() due to a bug introduced by ardiuino-esp32 from version 2.0.12 onwards
// client.flush();
client.stop();
} // endif, client

Expand Down

0 comments on commit 099f6a8

Please sign in to comment.