From 47cef359ca3bce0933dcb8ba1ebf62e06db803e3 Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Wed, 22 Oct 2025 03:57:57 +0200 Subject: [PATCH] Put back icons --- web/public/service-worker.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/public/service-worker.js b/web/public/service-worker.js index 1803471..1bdefb9 100644 --- a/web/public/service-worker.js +++ b/web/public/service-worker.js @@ -44,8 +44,8 @@ self.addEventListener('push', event => { const title = data.title || 'Notification'; const options = { body: data.body || 'You have a new message', - // icon: '/icons/icon-192x192.png', - // badge: '/icons/icon-192x192.png', + icon: '/icons/icon-192x192.png', + badge: '/icons/icon-192x192.png', data: data.url || '/' }; event.waitUntil(self.registration.showNotification(title, options));