logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: 37e3a23f2a25120e13aa4f1ff65e444060d24abb
parent 1931e7c3ba49a68586a31661f34da4cfc722ddf4
Author: Henry Jameson <me@hjkos.com>
Date:   Mon, 20 Nov 2023 00:19:51 +0200

fix badge

Diffstat:

Msrc/services/notification_utils/notification_utils.js4+---
1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/src/services/notification_utils/notification_utils.js b/src/services/notification_utils/notification_utils.js @@ -90,12 +90,10 @@ 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) + cachedBadgeUrl = favicon.favimg.src } }