mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-24 12:19:41 +00:00
Don't count muted convos in badge count by default
This commit is contained in:
@@ -381,6 +381,12 @@
|
||||
storage.put('notification-draw-attention', value),
|
||||
getAudioNotification: () => storage.get('audio-notification'),
|
||||
setAudioNotification: value => storage.put('audio-notification', value),
|
||||
getCountMutedConversations: () =>
|
||||
storage.get('badge-count-muted-conversations', false),
|
||||
setCountMutedConversations: value => {
|
||||
storage.put('badge-count-muted-conversations', value);
|
||||
window.Whisper.events.trigger('updateUnreadCount');
|
||||
},
|
||||
getCallRingtoneNotification: () =>
|
||||
storage.get('call-ringtone-notification', true),
|
||||
setCallRingtoneNotification: value =>
|
||||
|
||||
Reference in New Issue
Block a user