aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-06-28 15:41:31 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-06-28 15:41:31 +0200
commite844a6457a818fbe331fb43199dba2482e94fa6a (patch)
treeac92f013c691a212145d24bb358235c7257ad9da /src
parentBump version to beta 4 (diff)
downloadferdium-app-e844a6457a818fbe331fb43199dba2482e94fa6a.tar.gz
ferdium-app-e844a6457a818fbe331fb43199dba2482e94fa6a.tar.zst
ferdium-app-e844a6457a818fbe331fb43199dba2482e94fa6a.zip
fix(Notifications): Don't show notification badges when app is muted
Diffstat (limited to 'src')
-rw-r--r--src/stores/UIStore.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/UIStore.js b/src/stores/UIStore.js
index 61e0c5010..9680c5bcc 100644
--- a/src/stores/UIStore.js
+++ b/src/stores/UIStore.js
@@ -31,7 +31,7 @@ export default class UIStore extends Store {
31 @computed get showMessageBadgesEvenWhenMuted() { 31 @computed get showMessageBadgesEvenWhenMuted() {
32 const settings = this.stores.settings.all; 32 const settings = this.stores.settings.all;
33 33
34 return (settings.app.isAppMuted && settings.app.showMessageBadgeWhenMuted) || !settings.isAppMuted; 34 return (settings.app.isAppMuted && settings.app.showMessageBadgeWhenMuted) || !settings.app.isAppMuted;
35 } 35 }
36 36
37 @computed get isDarkThemeActive() { 37 @computed get isDarkThemeActive() {