diff options
| author | Henry Jameson <me@hjkos.com> | 2023-11-16 20:45:07 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2023-11-16 20:45:07 +0200 |
| commit | ce17ebd3d00841d72cd9e4541cc73620849ef836 (patch) | |
| tree | 5e7484284b8dea3d94ec617f8d6d59d8e8cd6969 | |
| parent | a17defc5abfe60b6aa0dc3275dac2cbec507472a (diff) | |
use URL for original favicon instead of canvas
| -rw-r--r-- | src/services/notification_utils/notification_utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/notification_utils/notification_utils.js b/src/services/notification_utils/notification_utils.js index 2c25000e..675e744e 100644 --- a/src/services/notification_utils/notification_utils.js +++ b/src/services/notification_utils/notification_utils.js @@ -82,7 +82,7 @@ export const unseenNotificationsFromStore = store => export const prepareNotificationObject = (notification, i18n) => { if (cachedBadgeUrl === null) { const favicon = FaviconService.getOriginalFavicons()[0] - cachedBadgeUrl = favicon.favcanvas.toDataURL() + cachedBadgeUrl = favicon.favimg.href } const notifObj = { |
