diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-10-19 12:30:22 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-10-19 12:40:14 +0200 |
commit | 595ad8b8620a63b7ef5a7569bc6cb44675904051 (patch) | |
tree | c0ee592a53e139baab6208dff3271fa3d9fb0ef6 | |
parent | deaedf0d8d8f516909afa1d2bafda654896f958e (diff) |
remove stray " " from byline-booster
-rw-r--r-- | lisp/mastodon-tl.el | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 7d333e4..95632cd 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -749,8 +749,7 @@ The result is added as an attachments property to author-byline." Only return something if TOOT contains a reblog." (let ((reblog (alist-get 'reblog toot))) (if reblog - (concat - " " (mastodon-tl--byline-author toot)) + (mastodon-tl--byline-author toot) ""))) (defun mastodon-tl--byline-booster-str (toot) |