From 955581f7601fb148a41b1cfe975108b1833232c7 Mon Sep 17 00:00:00 2001 From: escapedcat Date: Tue, 13 Dec 2022 16:37:16 +0100 Subject: [PATCH] fix(notifications): update imageUrl for manifest v3 #1051 --- src/extension/background-script/events/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extension/background-script/events/helpers.ts b/src/extension/background-script/events/helpers.ts index ae099166d9..2bde091636 100644 --- a/src/extension/background-script/events/helpers.ts +++ b/src/extension/background-script/events/helpers.ts @@ -7,7 +7,7 @@ const notify = (options: { title: string; message: string }) => { const notification: browser.Notifications.CreateNotificationOptions = { type: "basic", - iconUrl: "assets/icons/alby_icon_yellow_48x48.png", + iconUrl: "../assets/icons/alby_icon_yellow_48x48.png", ...options, };