fix: check if notifications are available at all before checking if triggered are available
All checks were successful
continuous-integration/drone/push Build is passing

Should fix sentry issue FRONTEND-OSS-J
This commit is contained in:
kolaente 2021-10-31 12:56:32 +01:00
parent 8bbdbe62a4
commit 8389587a60
Signed by: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -161,7 +161,7 @@ export default class TaskModel extends AbstractModel {
}
async cancelScheduledNotifications() {
if (!('showTrigger' in Notification.prototype)) {
if (!(Notification && 'showTrigger' in Notification.prototype)) {
console.debug('This browser does not support triggered notifications')
return
}
@ -196,7 +196,7 @@ export default class TaskModel extends AbstractModel {
return
}
if (!('showTrigger' in Notification.prototype)) {
if (!(Notification && 'showTrigger' in Notification.prototype)) {
console.debug('This browser does not support triggered notifications')
return
}