diff --git a/src/controllers/calls_controller.rs b/src/controllers/calls_controller.rs index 7bbbb8c..36a93cd 100644 --- a/src/controllers/calls_controller.rs +++ b/src/controllers/calls_controller.rs @@ -141,7 +141,7 @@ pub async fn join_call(r: &mut UserWsRequestHandler) -> RequestResult { // Remove any other active connection to current call of current user for conn in user_ws_controller::get_all_connections()? { if conn.user_id() != r.user_id_ref()? || conn.session.eq(&r.get_conn().session) { - return Ok(()); + continue; } if let Some(call) = &conn.active_call {