Fix storage service

This commit is contained in:
Peter Maquiran
2021-08-31 19:30:08 +01:00
parent 40a6a4d37a
commit 82a601ccec
6 changed files with 16 additions and 41 deletions
@@ -45,6 +45,9 @@ export class WebNotificationPopupService {
}
sendNotification(message) {
if (this.platform.is('desktop') || this.platform.is('mobileweb')) {}
else {return false}
var n = new Notification(message);
}
}