diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-26 11:22:10 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-26 11:22:10 +0100 |
commit | 217af69c12d4472d308e2aec6cdd78045d70d97b (patch) | |
tree | f0806a9563fe7118b78deac89c0fa33be988ec33 /lisp/mastodon-tl.el | |
parent | 5d5d4078f3f307e3fd5f020cbee53e9a3f9197c1 (diff) |
symbols: preceding space for locked accounts, private/direct toots
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 8c9e00a..aa34c2e 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -667,9 +667,9 @@ this just means displaying toot client." (funcall author-byline toot) ;; visibility: (cond ((equal visibility "direct") - (mastodon-tl--symbol 'direct)) + (concat " " (mastodon-tl--symbol 'direct))) ((equal visibility "private") - (mastodon-tl--symbol 'private))) + (concat " " (mastodon-tl--symbol 'private)))) (funcall action-byline toot) " " ;; TODO: Once we have a view for toot (responses etc.) make |