From 46698055e63fed46906c8ac943b97a4a3afca6ea Mon Sep 17 00:00:00 2001 From: Timo Date: Fri, 18 Jul 2025 13:15:06 +0200 Subject: [PATCH] remove everything decline related --- src/rtcSessionHelpers.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/rtcSessionHelpers.ts b/src/rtcSessionHelpers.ts index 6406da05..9cc38cc4 100644 --- a/src/rtcSessionHelpers.ts +++ b/src/rtcSessionHelpers.ts @@ -99,9 +99,7 @@ async function makePreferredLivekitFoci( // if (focusOtherMembers) preferredFoci.push(focusOtherMembers); } -function getRTCNotificationType( - room: Room, -): Exclude | undefined { +function getRTCNotificationType(room: Room): RTCNotificationType | undefined { if (room.isCallRoom()) return undefined; if (getJoinedNonFunctionalMembers(room).length === 2) return "ring"; return "notification";