From a274a8548ee6e5cff1bc9574116d593b19a5c262 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Wed, 18 Jun 2025 22:41:02 +1000 Subject: dashboard: send notif when pfp changed --- modules/notifications/Notification.qml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'modules/notifications') diff --git a/modules/notifications/Notification.qml b/modules/notifications/Notification.qml index a57c8d2..8a0e367 100644 --- a/modules/notifications/Notification.qml +++ b/modules/notifications/Notification.qml @@ -197,10 +197,12 @@ StyledRect { return "download"; if (summary.includes("update")) return "update"; - if (summary.startsWith("file")) - return "folder_copy"; - if (summary.startsWith("unable to")) + if (summary.includes("unable to")) return "deployed_code_alert"; + if (summary.includes("profile")) + return "person"; + if (summary.includes("file")) + return "folder_copy"; if (root.modelData.urgency === NotificationUrgency.Critical) return "release_alert"; return "chat"; -- cgit v1.2.3-freya