This commit is contained in:
Logan Cusano
2025-06-07 23:40:07 -04:00
parent 042c9b462d
commit fa4fcbd18d

View File

@@ -233,7 +233,7 @@ async def receive_commands(websocket):
print(f"Received unknown command: {command_name}")
elif data.get("type") == "handshake_ack":
# Set the session token
app_conf.set(data.get("access_token"))
app_conf.set("access_token", data.get("access_token"))
print(f"Server acknowledged handshake.")
else: