From: Dessalines Date: Sat, 4 Sep 2021 05:10:00 +0000 (-0400) Subject: Fix issue with new notification trying to do a fetch. X-Git-Url: http://these/git/?a=commitdiff_plain;h=501a5fb1e715fe68ea34baa2afa96d06d21edd7d;p=lemmy-ui.git Fix issue with new notification trying to do a fetch. --- diff --git a/src/shared/utils.ts b/src/shared/utils.ts index 86e513b..f54e259 100644 --- a/src/shared/utils.ts +++ b/src/shared/utils.ts @@ -686,18 +686,21 @@ export function notifyPrivateMessage(pmv: PrivateMessageView, router: any) { function notify(info: NotifyInfo, router: any) { messageToastify(info, router); - 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); - }; - } + // 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); + // }; + // } } export function setupTribute() {