From 982fae53c89ea1fab142e602d600217435b1624e Mon Sep 17 00:00:00 2001 From: Ernest Date: Sun, 24 Jul 2022 14:08:23 +0200 Subject: [PATCH] Fix Notification browser fetch --- src/shared/utils.ts | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/src/shared/utils.ts b/src/shared/utils.ts index f54e259..f9c554f 100644 --- a/src/shared/utils.ts +++ b/src/shared/utils.ts @@ -686,21 +686,18 @@ export function notifyPrivateMessage(pmv: PrivateMessageView, router: any) { function notify(info: NotifyInfo, router: any) { messageToastify(info, router); - // TODO absolute nightmare bug, but notifs are currently broken. - // Notification.new will try to do a browser fetch ??? - - // if (Notification.permission !== "granted") Notification.requestPermission(); - // else { - // var notification = new Notification(info.name, { - // icon: info.icon, - // body: info.body, - // }); - - // notification.onclick = (ev: Event): any => { - // ev.preventDefault(); - // router.history.push(info.link); - // }; - // } + if (Notification.permission !== "granted") Notification.requestPermission(); + else { + var notification = new Notification(info.name, { + ...{body: info.body}, + ...(info.icon && {icon: info.icon}) + }); + + notification.onclick = (ev: Event): any => { + ev.preventDefault(); + router.history.push(info.link); + }; + } } export function setupTribute() { -- 2.44.1