diff --git a/libs/api/room/ws_handler.rs b/libs/api/room/ws_handler.rs index 827f296..6a12a01 100644 --- a/libs/api/room/ws_handler.rs +++ b/libs/api/room/ws_handler.rs @@ -728,6 +728,9 @@ impl WsRequestHandler { WsAction::UnsubscribeRoom => Ok(WsResponseData::bool(true)), WsAction::SubscribeProject => Ok(WsResponseData::subscribed(None, None)), WsAction::UnsubscribeProject => Ok(WsResponseData::bool(true)), + // TypingStart/TypingStop are handled directly in ws_universal.rs + // (interception point sends response there, so this arm is never reached) + WsAction::TypingStart | WsAction::TypingStop => Ok(WsResponseData::bool(true)), } } }