forked from AkkomaGang/akkoma-fe
Remove auto-dismissing notifications
This commit is contained in:
parent
c71405ccad
commit
f481cdd00b
1 changed files with 1 additions and 4 deletions
|
@ -2,8 +2,5 @@ export const showDesktopNotification = (rootState, desktopNotificationOpts) => {
|
||||||
if (!('Notification' in window && window.Notification.permission === 'granted')) return
|
if (!('Notification' in window && window.Notification.permission === 'granted')) return
|
||||||
if (rootState.statuses.notifications.desktopNotificationSilence) { return }
|
if (rootState.statuses.notifications.desktopNotificationSilence) { return }
|
||||||
|
|
||||||
const desktopNotification = new window.Notification(desktopNotificationOpts.title, desktopNotificationOpts)
|
return new window.Notification(desktopNotificationOpts.title, desktopNotificationOpts)
|
||||||
// Chrome is known for not closing notifications automatically
|
|
||||||
// according to MDN, anyway.
|
|
||||||
setTimeout(desktopNotification.close.bind(desktopNotification), 5000)
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue