aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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