There was an error while loading. Please reload this page.
1 parent 5b02c4d commit 03589f6Copy full SHA for 03589f6
1 file changed
src/stores/AppStore.js
@@ -185,6 +185,11 @@ export default class AppStore extends Store {
185
}) {
186
if (this.stores.settings.all.app.isAppMuted) return;
187
188
+ // TODO: is there a simple way to use blobs for notifications without storing them on disk?
189
+ if (options.icon.startsWith('blob:')) {
190
+ delete options.icon;
191
+ }
192
+
193
const notification = new window.Notification(title, options);
194
notification.onclick = (e) => {
195
if (serviceId) {
0 commit comments