diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-12 22:01:46 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-12 22:01:46 -0700 |
commit | 598b6d44e33a2e57a8fc0e9ddecb8b8753096dbd (patch) | |
tree | d59a8f901778bf4e20ef6dcd2b124b3518ef72d8 /continuedev | |
parent | c6eff59c445017066cae8d2706521a694ef16a23 (diff) | |
download | sncontinue-598b6d44e33a2e57a8fc0e9ddecb8b8753096dbd.tar.gz sncontinue-598b6d44e33a2e57a8fc0e9ddecb8b8753096dbd.tar.bz2 sncontinue-598b6d44e33a2e57a8fc0e9ddecb8b8753096dbd.zip |
patch, send state initially
Diffstat (limited to 'continuedev')
-rw-r--r-- | continuedev/src/continuedev/server/gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/continuedev/src/continuedev/server/gui.py b/continuedev/src/continuedev/server/gui.py index 8f6f68f6..238273b2 100644 --- a/continuedev/src/continuedev/server/gui.py +++ b/continuedev/src/continuedev/server/gui.py @@ -174,7 +174,7 @@ async def websocket_endpoint(websocket: WebSocket, session: Session = Depends(we protocol.websocket = websocket # Update any history that may have happened before connection - # await protocol.send_state_update() + await protocol.send_state_update() while AppStatus.should_exit is False: message = await websocket.receive_text() |