Fix status_response handling
This commit is contained in:
parent
e0548a128c
commit
215926de88
@ -642,6 +642,10 @@ class WebRTCSignalingClient:
|
|||||||
# Handle status_ok response from server
|
# Handle status_ok response from server
|
||||||
logger.debug(f"Received status_ok from server with data: {data}")
|
logger.debug(f"Received status_ok from server with data: {data}")
|
||||||
# This confirms the connection is healthy
|
# 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":
|
elif msg_type == "chat_message":
|
||||||
logger.info("Received chat message")
|
logger.info("Received chat message")
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user