Skip to content

Commit

Permalink
Avoid websocket ping back on fw upgrade via web UI form (#1574)
Browse files Browse the repository at this point in the history
  • Loading branch information
xoseperez committed Feb 26, 2019
1 parent 0512fdd commit 92e1094
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/espurna/web.ino
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,8 @@ void _onUpgradeData(AsyncWebServerRequest *request, String filename, size_t inde
#endif
}
} else {
DEBUG_MSG_P(PSTR("[UPGRADE] Progress: %u bytes\r"), index + len);
//Removed to avoid websocket ping back during upgrade (see #1574)
//DEBUG_MSG_P(PSTR("[UPGRADE] Progress: %u bytes\r"), index + len);
}
}

Expand Down

0 comments on commit 92e1094

Please sign in to comment.