summaryrefslogtreecommitdiff
path: root/modules/notifications/Notification.qml
diff options
context:
space:
mode:
Diffstat (limited to 'modules/notifications/Notification.qml')
-rw-r--r--modules/notifications/Notification.qml8
1 files changed, 5 insertions, 3 deletions
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";