diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-08-19 10:18:16 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-08-19 10:18:16 +0200 |
commit | 925c26eefb5fccebba786b7232fd8e107246ed18 (patch) | |
tree | 846fc2e9ce39dcb497ff934784207e5f6ade2481 /lisp | |
parent | 51eb7c54e342b6bf2cb76fd93af5d5c2c184eea4 (diff) |
FIX the post visibility marker displayable check
Diffstat (limited to 'lisp')
-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 be416f3..378b98c 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -554,11 +554,11 @@ By default it is `mastodon-tl--byline-boosted'" ;; in `mastodon-tl--byline-author' (funcall author-byline toot) (cond ((equal visibility "direct") - (if (fontp (char-displayable-p #10r128274)) + (if (fontp (char-displayable-p #10r9993)) " ✉" " [direct]")) ((equal visibility "private") - (if (fontp (char-displayable-p #10r9993)) + (if (fontp (char-displayable-p #10r128274)) " 🔒" " [followers]"))) (funcall action-byline toot) |