diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-10-11 11:16:44 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-10-11 11:16:44 +0200 |
commit | 95940ee54de27f4a76860c8932ac339db2b664f3 (patch) | |
tree | e13b84a025837ad5565332af66cb835bc93bfbdd /lisp/mastodon-notifications.el | |
parent | 17ba291ba8b8d1231116af5654f40b80806f4260 (diff) |
notifs: type always reblog, not boost
Diffstat (limited to 'lisp/mastodon-notifications.el')
-rw-r--r-- | lisp/mastodon-notifications.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el index a67ec0f..73c20f1 100644 --- a/lisp/mastodon-notifications.el +++ b/lisp/mastodon-notifications.el @@ -175,7 +175,7 @@ Can be called in notifications view or in follow-requests view." (buffer-string))) (defvar mastodon-notifications-grouped-types - '(follow boost favourite) + '(follow reblog favourite) "List of notification types for which grouping is implemented.") (defvar mastodon-notifications--action-alist @@ -257,7 +257,7 @@ JSON is the full notifications JSON." (concat ":\n" (mastodon-notifications--comment-note-text body))))) - ((member type-sym '(favourite boost)) + ((member type-sym '(favourite reblog)) (mastodon-notifications--comment-note-text body)) (t body))) ;; author-byline @@ -269,7 +269,7 @@ JSON is the full notifications JSON." (alist-get type-sym mastodon-notifications--action-alist))) .status_id ;; base toot - (when (member type-sym '(favourite boost)) + (when (member type-sym '(favourite reblog)) status) nil nil nil nil nil group accounts))))) ;; insert status still needs our group data |