From 1931e7c3ba49a68586a31661f34da4cfc722ddf4 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Mon, 20 Nov 2023 00:17:09 +0200 Subject: [PATCH] temp console log for mobile debug --- src/services/notification_utils/notification_utils.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/services/notification_utils/notification_utils.js b/src/services/notification_utils/notification_utils.js index f19cd565..cf2a26aa 100644 --- a/src/services/notification_utils/notification_utils.js +++ b/src/services/notification_utils/notification_utils.js @@ -90,10 +90,12 @@ export const unseenNotificationsFromStore = store => { export const prepareNotificationObject = (notification, i18n) => { if (cachedBadgeUrl === null) { const favicon = FaviconService.getOriginalFavicons()[0] + console.log('TEST FAVICON', favicon) if (!favicon) { cachedBadgeUrl = 'about:blank' } else { cachedBadgeUrl = favicon.favimg.href + console.log('TEST FAVICON', cachedBadgeUrl) } }