diff options
author | marty hiatt <martianhiatus@riseup.net> | 2024-10-17 14:17:28 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2024-10-17 14:17:28 +0200 |
commit | 94a7083c282b0d65984ef6dffa891e3ea397386e (patch) | |
tree | 069c243e166ccfdcffa8d386420a0170851e0499 | |
parent | 95875366372b6acf571254cc70f58caa80dda19b (diff) |
flycheck
-rw-r--r-- | lisp/mastodon-notifications.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el index 262ed57..f8f093b 100644 --- a/lisp/mastodon-notifications.el +++ b/lisp/mastodon-notifications.el @@ -324,7 +324,8 @@ ACTION-BYLINE is a string, obtained by calling `mastodon-notifications--byline-concat'. ACTION-AUTHORS is a string of those who have responded to the current item, obtained by calling -`mastodon-notifications--byline-accounts' +`mastodon-notifications--byline-accounts'. +ACTION-SYMBOL is a symbol indicating a favourite, boost, or edit. ID is that of the status if it is a notification, which is attached as a `item-id' property if provided. If the status is a favourite or boost notification, BASE-TOOT is the @@ -376,12 +377,11 @@ ACCOUNTS is the notification accounts data." ;; almost everything is .account.field anyway ;; but toot still needed also, for attachments, etc. (defun mastodon-notifications--byline-accounts - (accounts toot group &optional avatar compact) + (accounts toot group &optional avatar) "Propertize author byline ACCOUNTS for TOOT, the item responded to. GROUP is the group notification data. When AVATAR, include the account's avatar image. -When DOMAIN, force inclusion of user's domain in their handle. -When COMPACT, just display username, not also handle." +When DOMAIN, force inclusion of user's domain in their handle." (let ((total (alist-get 'notifications_count group)) (accts 2)) (concat |