summaryrefslogtreecommitdiff
path: root/continuedev/src/continuedev/server
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-07-03 21:45:17 -0700
committerTy Dunn <ty@tydunn.com>2023-07-03 21:45:17 -0700
commit68e6b9ee68b5bcdf2cddb10ef55b18e6c466c084 (patch)
tree651113b04e4b44dfb1ac9de70557aaf31a5dbc75 /continuedev/src/continuedev/server
parent524c7bd433b8bfcc96ca1d95c6fbd27ce52ccb54 (diff)
downloadsncontinue-68e6b9ee68b5bcdf2cddb10ef55b18e6c466c084.tar.gz
sncontinue-68e6b9ee68b5bcdf2cddb10ef55b18e6c466c084.tar.bz2
sncontinue-68e6b9ee68b5bcdf2cddb10ef55b18e6c466c084.zip
adding config slash command
Diffstat (limited to 'continuedev/src/continuedev/server')
-rw-r--r--continuedev/src/continuedev/server/gui.py2
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()