fix: voice channels no longer ring on join
CI / Build & Quality Checks (push) Successful in 10m53s
Trigger Desktop Build / trigger (push) Successful in 10s

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 <noreply@anthropic.com>
This commit is contained in:
2026-06-10 20:33:00 -04:00
parent 469b9aa9c6
commit 6a83e67f95
+1 -1
View File
@@ -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');
}