diff --git a/ts/services/calling.ts b/ts/services/calling.ts index 181d6e110..178e508f5 100644 --- a/ts/services/calling.ts +++ b/ts/services/calling.ts @@ -2019,7 +2019,12 @@ export class CallingClass { ); const isAnybodyElseInGroupCall = Boolean(peekInfo.joinedMembers.length); - if (isNewCall && !wasStartedByMe && isAnybodyElseInGroupCall) { + if ( + isNewCall && + !wasStartedByMe && + isAnybodyElseInGroupCall && + !conversation.isMuted() + ) { this.notifyForGroupCall(conversation, creatorConversation); } }