aboutsummaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-05-16 13:32:24 +0200
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-05-16 13:32:24 +0200
commitda2e9048315dfa83a830eb11e656eb33bf95a85a (patch)
tree8eac5ff00f99b4483a289bdc751e81a18fa8058e /lisp
parent14a5358806407a881748b9bbe9bdd113743a2acf (diff)
no stats for foll/foll_req notifs
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mastodon-tl.el10
1 files changed, 6 insertions, 4 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index 8fb0f5e..592f993 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -579,6 +579,7 @@ this just means displaying toot client."
(visibility (mastodon-tl--field 'visibility toot))
(account (alist-get 'account toot))
(avatar-url (alist-get 'avatar account))
+ (type (alist-get 'type toot))
(edited-time (alist-get 'edited_at toot))
(edited-parsed (when edited-time (date-to-time edited-time))))
(concat
@@ -635,10 +636,10 @@ this just means displaying toot client."
'face 'mastodon-display-name-face
'follow-link t
'mouse-face 'highlight
- 'mastodon-tab-stop 'shr-url
- 'shr-url app-url
+ 'mastodon-tab-stop 'shr-url
+ 'shr-url app-url
'help-echo app-url
- 'keymap mastodon-tl--shr-map-replacement)))))
+ 'keymap mastodon-tl--shr-map-replacement)))))
(if edited-time
(concat
" "
@@ -655,7 +656,8 @@ this just means displaying toot client."
"")
(propertize (concat "\n " mastodon-tl--horiz-bar)
'face 'default)
- (if mastodon-tl--show-stats
+ (if (and mastodon-tl--show-stats
+ (not (member type '("follow" "follow_request"))))
(mastodon-tl--toot-stats toot)
"")
"\n")