diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-06-10 14:15:57 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-06-10 14:15:57 +0200 |
commit | e010954eb2b50fbc151e0cea5c2db11a530556d2 (patch) | |
tree | 8e8838ae12b93bc280a987bcc38c35ef2ee6124d | |
parent | b304f59945aaadd9b7bd3a37e704a2193f43d3d6 (diff) |
profile: switch followed-by/following display
-rw-r--r-- | lisp/mastodon-profile.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index d9d8a4c..b8ac8be 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -621,9 +621,9 @@ HEADERS means also fetch link headers for pagination." (if followsp (mastodon-tl--set-face (concat (when (equal .following 't) - " | FOLLOWS YOU") - (when (equal .followed_by 't) " | FOLLOWED BY YOU") + (when (equal .followed_by 't) + " | FOLLOWS YOU") (when (equal .requested_by 't) " | REQUESTED TO FOLLOW YOU") "\n\n") |