1
0

add debug to chat preparation

This commit is contained in:
2025-10-01 21:41:15 -04:00
parent 8930588217
commit e681dac537

View File

@@ -41,6 +41,7 @@ def get_origin_from_ws_url(ws_url: str) -> str:
return f"http{'s' if is_wss else ''}://{domain}/"
async def send_chat_message(websocket, message: str):
log.debug(f"Sending chat message: {message}")
await websocket.send(guac_encode("chat", message))
async def send_guac(websocket, *args: str):