💥 ags(notifications): add AstalNotifd.Notification.appIcon property to HistoryNotification too

This commit is contained in:
retrozinndev
2025-04-18 21:43:23 -03:00
parent 694a79e161
commit 103825161a
+2
View File
@@ -12,6 +12,7 @@ export interface HistoryNotification {
body: string;
summary: string;
urgency: AstalNotifd.Urgency;
appIcon?: string;
time: number;
image?: string;
}
@@ -137,6 +138,7 @@ class Notifications extends GObject.Object {
body: notif.body,
summary: notif.summary,
urgency: notif.urgency,
appIcon: notif.appIcon,
time: notif.time,
image: notif.image ? notif.image : undefined
} as HistoryNotification);