8000 Fix websocket input processing · JettIsOnTheNet/circuitpython@96b0c21 · GitHub
[go: up one dir, main page]

Skip to content

Commit 96b0c21

Browse files
committed
Fix websocket input processing
It was skipped in many cases which breaks ctrl-cing running code. Fixes adafruit#8132
1 parent 949a906 commit 96b0c21

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

supervisor/shared/web_workflow/web_workflow.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1515,9 +1515,11 @@ void supervisor_web_workflow_background(void *data) {
15151515
}
15161516
break;
15171517
}
1518-
websocket_background();
1519-
break;
15201518
}
1519+
1520+
// Let the websocket code run.
1521+
websocket_background();
1522+
15211523
// Resume polling
15221524
socketpool_socket_poll_resume();
15231525

0 commit comments

Comments
 (0)
0