aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.js
diff options
context:
space:
mode:
authorLibravatar Stefan Malzner <stefan@adlk.io>2019-07-30 12:08:46 +0200
committerLibravatar Stefan Malzner <stefan@adlk.io>2019-07-30 12:08:46 +0200
commit44c413bca461863cf04442642bac9f68db1b6200 (patch)
tree268ff7599c357826cfc079574544be1797d61a04 /src/stores/AppStore.js
parentUpdate changelog (diff)
downloadferdium-app-44c413bca461863cf04442642bac9f68db1b6200.tar.gz
ferdium-app-44c413bca461863cf04442642bac9f68db1b6200.tar.zst
ferdium-app-44c413bca461863cf04442642bac9f68db1b6200.zip
fix(Notifications): Fix issue that blocked notifications from e.g. Slack
Diffstat (limited to 'src/stores/AppStore.js')
-rw-r--r--src/stores/AppStore.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/AppStore.js b/src/stores/AppStore.js
index 72c4b4d0b..bca20a581 100644
--- a/src/stores/AppStore.js
+++ b/src/stores/AppStore.js
@@ -189,7 +189,7 @@ export default class AppStore extends Store {
189 if (this.stores.settings.all.app.isAppMuted) return; 189 if (this.stores.settings.all.app.isAppMuted) return;
190 190
191 // TODO: is there a simple way to use blobs for notifications without storing them on disk? 191 // TODO: is there a simple way to use blobs for notifications without storing them on disk?
192 if (options.icon.startsWith('blob:')) { 192 if (options.icon && options.icon.startsWith('blob:')) {
193 delete options.icon; 193 delete options.icon;
194 } 194 }
195 195