diff options
-rw-r--r-- | lisp/mastodon-notifications.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el index c2257b2..f163863 100644 --- a/lisp/mastodon-notifications.el +++ b/lisp/mastodon-notifications.el @@ -314,8 +314,10 @@ ACCOUNTS is the notification accounts data." (propertize ;; top byline, body + byline: (concat (propertize ;; top byline - (concat action-symbol " " action-authors - action-byline) + (if (equal type "mention") + "" + (concat action-symbol " " action-authors + action-byline)) 'byline-top t) (propertize ;; body only body |