aboutsummaryrefslogtreecommitdiffstats
path: root/src/stores/AppStore.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/stores/AppStore.ts')
-rw-r--r--src/stores/AppStore.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stores/AppStore.ts b/src/stores/AppStore.ts
index 82591a2a4..412c52ecf 100644
--- a/src/stores/AppStore.ts
+++ b/src/stores/AppStore.ts
@@ -351,6 +351,7 @@ export default class AppStore extends TypedStore {
351 351
352 // TODO: is there a simple way to use blobs for notifications without storing them on disk? 352 // TODO: is there a simple way to use blobs for notifications without storing them on disk?
353 if (options.icon?.startsWith('blob:')) { 353 if (options.icon?.startsWith('blob:')) {
354 // eslint-disable-next-line no-param-reassign
354 delete options.icon; 355 delete options.icon;
355 } 356 }
356 357
@@ -493,6 +494,7 @@ export default class AppStore extends TypedStore {
493 allOrphanedServiceIds.map(id => removeServicePartitionDirectory(id)), 494 allOrphanedServiceIds.map(id => removeServicePartitionDirectory(id)),
494 ); 495 );
495 } catch (error) { 496 } catch (error) {
497 // eslint-disable-next-line no-console
496 console.log('Error while deleting service partition directory -', error); 498 console.log('Error while deleting service partition directory -', error);
497 } 499 }
498 await Promise.all( 500 await Promise.all(