diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-10-16 18:27:12 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-10-16 18:27:12 +0200 |
commit | bf01cb7caae67dae36382e0489bc53d56c2172d7 (patch) | |
tree | 07b95eff1de3b96b083a603998c62294898a7944 /lisp/mastodon-tl.el | |
parent | 5a0ab77d0faad9a32361907c2b610d458844ffad (diff) |
bylines: fix visibility icon position
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index fa48414..42ed5c5 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -829,6 +829,8 @@ BASE-TOOT is JSON for the base toot, if any." (concat ;; NB: action-byline (boost) is now added in insert-status, so no ;; longer part of the byline. + ;; (base) author byline: + (funcall author-byline toot nil domain :base account) ;; visibility: (cond ((string= visibility "direct") (propertize (concat " " (mastodon-tl--symbol 'direct)) @@ -836,8 +838,6 @@ BASE-TOOT is JSON for the base toot, if any." ((string= visibility "private") (propertize (concat " " (mastodon-tl--symbol 'private)) 'help-echo visibility))) - ;; (base) author byline: - (funcall author-byline toot nil domain :base account) " " ;; timestamp: (let ((ts (format-time-string |