diff --git a/src/room/GroupCallView.tsx b/src/room/GroupCallView.tsx index 04e1080e..b5ab57a9 100644 --- a/src/room/GroupCallView.tsx +++ b/src/room/GroupCallView.tsx @@ -149,12 +149,10 @@ export const GroupCallView: FC = ({ ); useEffect(() => { // Sanity check the room object - if (client.getRoom(rtcSession.room.roomId) !== rtcSession.room) { + if (client.getRoom(rtcSession.room.roomId) !== rtcSession.room) logger.warn( `We've ended up with multiple rooms for the same ID (${rtcSession.room.roomId}). This indicates a bug in the group call loading code, and may lead to incomplete room state.`, ); - return undefined; - } }, [client, rtcSession.room]); const room = rtcSession.room as Room;