diff options
author | Ty Dunn <ty@tydunn.com> | 2023-07-03 21:47:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-03 21:47:20 -0700 |
commit | 022cbb382bf5b0aa82216d73b4b59b85be0508c2 (patch) | |
tree | ccd737269c2d0ffd2c1a4fefe55f586406328d63 /continuedev/src/continuedev/server | |
parent | bbeea6ab78b14fa735962dbf4970be1230877097 (diff) | |
parent | fac295e722f158f13502b45b749aee30b900c7a7 (diff) | |
download | sncontinue-022cbb382bf5b0aa82216d73b4b59b85be0508c2.tar.gz sncontinue-022cbb382bf5b0aa82216d73b4b59b85be0508c2.tar.bz2 sncontinue-022cbb382bf5b0aa82216d73b4b59b85be0508c2.zip |
Merge pull request #180 from continuedev/slash-cmd
adding config slash command
Diffstat (limited to 'continuedev/src/continuedev/server')
-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 9a33fb6c..85458c09 100644 --- a/continuedev/src/continuedev/server/gui.py +++ b/continuedev/src/continuedev/server/gui.py @@ -148,7 +148,7 @@ async def websocket_endpoint(websocket: WebSocket, session: Session = Depends(we # Update any history that may have happened before connection await protocol.send_available_slash_commands() - # await protocol.send_state_update() THIS WAS CAUSING A LOT OF ISSUES. Don't uncomment. + await protocol.send_state_update() while AppStatus.should_exit is False: message = await websocket.receive_text() |