fix: request push notifications on mobile (#553)

This commit is contained in:
Joaquín Sánchez 2022-12-26 10:13:59 +01:00 committed by GitHub
parent 613c5315b3
commit f28923f86f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 10 deletions

View file

@ -43,7 +43,7 @@ export const onPush = (event: PushEvent) => {
icon,
lang: preferred_locale,
tag: notification_id,
timestamp: new Date().getUTCDate(),
timestamp: new Date().getTime(),
}
return self.registration.showNotification(options.title, notificationOptions)
})