Don't access "Notification" if the browser does not support it.

This commit is contained in:
creesch 2018-03-10 20:21:30 +01:00
parent 38b8cdbb5e
commit 6d4fb93e6b

View file

@ -150,7 +150,7 @@ function applySetting(name, value) {
autocompletion.disable();
}
} else if (name === "desktopNotifications") {
if (value && Notification.permission !== "granted") {
if (("Notification" in window) && value && Notification.permission !== "granted") {
Notification.requestPermission(updateDesktopNotificationStatus);
} else if (!value) {
$warningBlocked.hide();