diff options
author | marty hiatt <martianhiatus@riseup.net> | 2023-11-11 12:10:29 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2023-11-11 12:10:29 +0100 |
commit | 693244adecddbacc9d4a21a34902996d44657c8d (patch) | |
tree | 01c4d4b9714bdddbe19ce93c0e3b4d073c405207 /lisp/mastodon-profile.el | |
parent | ff4d7a5ae47c873e2a9f0920cb53f28fd1a4fa5a (diff) |
add (no replies) to statuses no replies profile view
Diffstat (limited to 'lisp/mastodon-profile.el')
-rw-r--r-- | lisp/mastodon-profile.el | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index 4fb73d6..1c41f24 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -609,9 +609,12 @@ HEADERS means also fetch link headers for pagination." (is-followers (string= endpoint-type "followers")) (is-following (string= endpoint-type "following")) (endpoint-name (cond - (is-statuses (if no-reblogs - " TOOTS (no boosts)" - " TOOTS ")) + (is-statuses (cond (no-reblogs + " TOOTS (no boosts)") + (no-replies + " TOOTS (no replies)") + (t + " TOOTS "))) (is-followers " FOLLOWERS ") (is-following " FOLLOWING ")))) (insert |