about summary refs log tree commit diff
path: root/app/assets
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-11-21 10:55:49 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-11-21 10:55:49 +0100
commitc41dc5e8e96008d1adfe394a220a6a1f8fd00846 (patch)
tree0f4a450c392600808e2439e60ef06d945f465422 /app/assets
parentd32e0364f9aa2d61080c53489996351d4bd7b1c4 (diff)
Icon for desktop notifications
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/javascripts/components/actions/notifications.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/actions/notifications.jsx b/app/assets/javascripts/components/actions/notifications.jsx
index b34fc7289..97551ebf7 100644
--- a/app/assets/javascripts/components/actions/notifications.jsx
+++ b/app/assets/javascripts/components/actions/notifications.jsx
@@ -37,7 +37,7 @@ export function updateNotifications(notification, intlMessages, intlLocale) {
     const title = new IntlMessageFormat(intlMessages[`notification.${notification.type}`], intlLocale).format({ name: notification.account.display_name.length > 0 ? notification.account.display_name : notification.account.username });
     const body  = $('<p>').html(notification.status ? notification.status.content : '').text();
 
-    new Notification(title, { body });
+    new Notification(title, { body, icon: notification.account.avatar });
   };
 };