Skip to content

Commit

Permalink
fix(Notifications): Don't show notification badges when app is muted
Browse files Browse the repository at this point in the history
  • Loading branch information
adlk committed Jun 28, 2019
1 parent e463582 commit e844a64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/UIStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default class UIStore extends Store {
@computed get showMessageBadgesEvenWhenMuted() {
const settings = this.stores.settings.all;

return (settings.app.isAppMuted && settings.app.showMessageBadgeWhenMuted) || !settings.isAppMuted;
return (settings.app.isAppMuted && settings.app.showMessageBadgeWhenMuted) || !settings.app.isAppMuted;
}

@computed get isDarkThemeActive() {
Expand Down

0 comments on commit e844a64

Please sign in to comment.