mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-08-31 02:15:25 +01:00
Don't show a notification for non-ringing calls in muted groups
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user