Fix status_response handling

This commit is contained in:
James Ketr 2025-09-05 12:28:55 -07:00
parent e0548a128c
commit 215926de88

View File

@ -642,6 +642,10 @@ class WebRTCSignalingClient:
# Handle status_ok response from server
logger.debug(f"Received status_ok from server with data: {data}")
# This confirms the connection is healthy
elif msg_type == "status_response":
# Handle status_response from server (response to status_check)
logger.debug(f"Received status_response from server with data: {data}")
# This confirms the connection is healthy and provides session info
elif msg_type == "chat_message":
logger.info("Received chat message")
try: