Index: background.js |
=================================================================== |
--- a/background.js |
+++ b/background.js |
@@ -359,17 +359,17 @@ function showNotification(notification) |
return; |
activeNotification = notification; |
if (activeNotification.type === "critical" || activeNotification.type === "question") |
{ |
var texts = NotificationStorage.getLocalizedTexts(notification); |
var title = texts.title || ""; |
var message = texts.message ? texts.message.replace(/<\/?(a|strong)>/g, "") : ""; |
- var iconUrl = ext.getURL("icons/abp-128.png"); |
+ var iconUrl = ext.getURL("icons/detailed/abp-128.png"); |
var hasLinks = activeNotification.links && activeNotification.links.length > 0; |
if (canUseChromeNotifications) |
{ |
var opts = { |
type: "basic", |
title: title, |
message: message, |