From 7c33858bbc1344188265378c76f9504c81221585 Mon Sep 17 00:00:00 2001 From: wryk Date: Mon, 20 May 2019 20:35:02 +0200 Subject: [PATCH] feat(notification): nope --- src/views/screens/encoding.vue | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/views/screens/encoding.vue b/src/views/screens/encoding.vue index 6ef7b10..95288ec 100644 --- a/src/views/screens/encoding.vue +++ b/src/views/screens/encoding.vue @@ -85,8 +85,12 @@ export default { } function showNotificationButton () { - return ('Notification' in window) && - Notification.permission !== 'granted' && - Notification.permission !== 'denied' + return false + + // TODO: fuuuuuuuuuuuuu android, I don't want to spawn notifications from a fucking service worker :< + + // return ('Notification' in window) && + // Notification.permission !== 'granted' && + // Notification.permission !== 'denied' }