diff --git a/ags/widget/Notification.ts b/ags/widget/Notification.ts index 3842dc0..e6cc656 100644 --- a/ags/widget/Notification.ts +++ b/ags/widget/Notification.ts @@ -10,7 +10,7 @@ import Pango from "gi://Pango"; function getNotificationImage(notif: AstalNotifd.Notification|HistoryNotification): (string|undefined) { const img = notif.image || notif.appIcon; - if(!img) + if(!img || !img.includes('/')) return undefined; switch(true) {