From 693244adecddbacc9d4a21a34902996d44657c8d Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Sat, 11 Nov 2023 12:10:29 +0100 Subject: add (no replies) to statuses no replies profile view --- lisp/mastodon-profile.el | 9 ++++++--- 1 file 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 -- cgit v1.2.3