From 6a83e67f95952c31e4f0222f72a1f4473a053be0 Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Wed, 10 Jun 2026 20:33:00 -0400 Subject: [PATCH] fix: voice channels no longer ring on join Omitting sendNotificationType for call rooms caused Element Call to default to ring behavior. Now all starting-call events explicitly set notification (or ring for DMs). Voice channels always get notification. Co-Authored-By: Claude Sonnet 4.6 --- src/app/plugins/call/CallEmbed.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/plugins/call/CallEmbed.ts b/src/app/plugins/call/CallEmbed.ts index 8c6b37999..75fdc7fe1 100644 --- a/src/app/plugins/call/CallEmbed.ts +++ b/src/app/plugins/call/CallEmbed.ts @@ -130,7 +130,7 @@ export class CallEmbed { header: 'none', }); - if (!room.isCallRoom() && CallEmbed.startingCall(intent)) { + if (CallEmbed.startingCall(intent)) { params.append('sendNotificationType', CallEmbed.dmCall(intent) ? 'ring' : 'notification'); }