From d4f8b35090bdb8dfd9c3f53372b1f73caeea60f6 Mon Sep 17 00:00:00 2001 From: Timo K Date: Thu, 18 Sep 2025 14:34:17 +0200 Subject: [PATCH] Add ring notification to UserIntent.StartNewCallDM Signed-off-by: Timo K --- src/UrlParams.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/UrlParams.ts b/src/UrlParams.ts index 4bd5fced..a78164ab 100644 --- a/src/UrlParams.ts +++ b/src/UrlParams.ts @@ -378,7 +378,7 @@ export const getUrlParams = ( controlledAudioDevices: platform === "desktop" ? false : true, skipLobby: true, returnToLobby: false, - sendNotificationType: "notification" as RTCNotificationType, + sendNotificationType: "notification", autoLeaveWhenOthersLeft: false, waitForCallPickup: false, }; @@ -392,6 +392,7 @@ export const getUrlParams = ( break; case UserIntent.StartNewCallDM: intentPreset.skipLobby = true; + intentPreset.sendNotificationType = "ring"; intentPreset.autoLeaveWhenOthersLeft = true; intentPreset.waitForCallPickup = true;