Don't show a notification for non-ringing calls in muted groups
This commit is contained in:
parent
a0b3464e15
commit
ee8d0196b1
1 changed files with 6 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue