diff options
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index b0f5981..50d623a 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -687,10 +687,15 @@ ACCOUNT is optionally acccount data to use." (alist-get 'avatar (alist-get 'account data)))) (if (not base) - (mastodon-tl--byline-handle - data domain account - ;; display uname not handle (for boosts): - uname 'mastodon-display-name-face) + ;; boost symbol: + (concat (mastodon-tl--symbol 'boost) + " " + ;; username as button: + (mastodon-tl--byline-handle + data domain account + ;; display uname not handle (for boosts): + uname 'mastodon-display-name-face)) + ;; normal combo author byline: (mastodon-tl--byline-uname-+-handle data domain account))))) (defun mastodon-tl--format-byline-help-echo (toot) |