From cc87a009cd27ca340a72aa50da8ababcaf9db281 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danielle=20For=C3=A9?= Date: Thu, 3 Sep 2026 21:47:37 -0700 Subject: [PATCH] Use fallback icon from server --- src/Widgets/NotificationEntry.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Widgets/NotificationEntry.vala b/src/Widgets/NotificationEntry.vala index 2ec4d0b8..4ffcff00 100644 --- a/src/Widgets/NotificationEntry.vala +++ b/src/Widgets/NotificationEntry.vala @@ -195,7 +195,7 @@ public class Notifications.NotificationEntry : Gtk.ListBoxRow { public void bind (Notification value) { notification = value; - Icon app_icon = new ThemedIcon ("dialog-information"); + Icon app_icon = new ThemedIcon ("io.elementary.notifications"); if (notification.app_icon.contains ("/")) { var file = File.new_for_uri (notification.app_icon); if (file.query_exists ()) {