From fefe1236a85af2925b8e4cccc01b27ff5af5135a Mon Sep 17 00:00:00 2001 From: Vara Rahul Rajana Date: Sun, 12 Apr 2026 02:25:42 +0530 Subject: [PATCH] fix: prevent redundant sync re-initialization on room navigation --- src/app/core/sync.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/core/sync.ts b/src/app/core/sync.ts index 3d660553..48b50465 100644 --- a/src/app/core/sync.ts +++ b/src/app/core/sync.ts @@ -293,6 +293,7 @@ const syncSpace = (url: string) => { } } + const relayKinds = [RELAY_MEMBERS, RELAY_ADD_MEMBER, RELAY_REMOVE_MEMBER] const roomMetaKinds = [ROOM_META, ROOM_ADMINS, ROOM_MEMBERS, LIVEKIT_PARTICIPANTS] const roomMemberKinds = [ROOM_DELETE, ROOM_JOIN, ROOM_LEAVE, ROOM_ADD_MEMBER, ROOM_REMOVE_MEMBER] -- 2.52.0