We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72d27d2 commit 44c413bCopy full SHA for 44c413b
src/stores/AppStore.js
@@ -189,7 +189,7 @@ export default class AppStore extends Store {
189
if (this.stores.settings.all.app.isAppMuted) return;
190
191
// TODO: is there a simple way to use blobs for notifications without storing them on disk?
192
- if (options.icon.startsWith('blob:')) {
+ if (options.icon && options.icon.startsWith('blob:')) {
193
delete options.icon;
194
}
195
0 commit comments