summaryrefslogtreecommitdiff
path: root/continuedev/src/continuedev/server
diff options
context:
space:
mode:
authorTy Dunn <ty@tydunn.com>2023-07-03 21:47:20 -0700
committerGitHub <noreply@github.com>2023-07-03 21:47:20 -0700
commit430f4e1b5ebd4f913ac2fe97227e2e7eaf8b008b (patch)
tree71ab571ea1d3f3c654105af509d54dedfd105d96 /continuedev/src/continuedev/server
parenta70131416dbfa32f623f04c457f3b11baaa343e7 (diff)
parent68e6b9ee68b5bcdf2cddb10ef55b18e6c466c084 (diff)
downloadsncontinue-430f4e1b5ebd4f913ac2fe97227e2e7eaf8b008b.tar.gz
sncontinue-430f4e1b5ebd4f913ac2fe97227e2e7eaf8b008b.tar.bz2
sncontinue-430f4e1b5ebd4f913ac2fe97227e2e7eaf8b008b.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.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()