[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/mastodon 27e438a2a4 17/50: fix author action byline non-gr
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/mastodon 27e438a2a4 17/50: fix author action byline non-grouped notifs: use display-name if poss |
Date: |
Sat, 2 Nov 2024 13:00:53 -0400 (EDT) |
branch: elpa/mastodon
commit 27e438a2a4bbd2ee35cb70c382980216e6710866
Author: marty hiatt <martianhiatus@disroot.org>
Commit: marty hiatt <martianhiatus@disroot.org>
fix author action byline non-grouped notifs: use display-name if poss
---
lisp/mastodon-notifications.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lisp/mastodon-notifications.el b/lisp/mastodon-notifications.el
index 9ff84134ff..c27ffef9aa 100644
--- a/lisp/mastodon-notifications.el
+++ b/lisp/mastodon-notifications.el
@@ -228,7 +228,8 @@ JSON is a list of alists."
str))))
(status (mastodon-tl--field 'status note))
(follower (alist-get 'account note))
- (follower-name (alist-get 'username follower))
+ (follower-name (or (alist-get 'display_name follower)
+ (alist-get 'username follower)))
(filtered (mastodon-tl--field 'filtered status))
(filters (when filtered
(mastodon-tl--current-filters filtered))))
- [nongnu] elpa/mastodon c4edecd145 23/50: cask build cleanups, (continued)
- [nongnu] elpa/mastodon c4edecd145 23/50: cask build cleanups, ELPA Syncer, 2024/11/02
- [nongnu] elpa/mastodon 2713081605 18/50: notifs: byline-accounts: remove toot arg, ELPA Syncer, 2024/11/02
- [nongnu] elpa/mastodon 3ec8a8386b 35/50: Merge branch 'non-group-notifs' into develop, ELPA Syncer, 2024/11/02
- [nongnu] elpa/mastodon 2bb6ad95f7 25/50: toot.el cask build cleanups, ELPA Syncer, 2024/11/02
- [nongnu] elpa/mastodon 2c3f35c953 31/50: some ifs become whens, ELPA Syncer, 2024/11/02
- [nongnu] elpa/mastodon f1bdef0b73 40/50: revert transient polls to use mastodon-toot-poll, ELPA Syncer, 2024/11/02
- [nongnu] elpa/mastodon ebab9b20a1 43/50: refactor a read-more-or-less heading, ELPA Syncer, 2024/11/02
- [nongnu] elpa/mastodon 6242db6028 49/50: bump, ELPA Syncer, 2024/11/02
- [nongnu] elpa/mastodon 9eaf125207 47/50: docstring poll done, ELPA Syncer, 2024/11/02
- [nongnu] elpa/mastodon 521c87ea65 09/50: notifs: remove commented body-arg code from format-note, ELPA Syncer, 2024/11/02
- [nongnu] elpa/mastodon 27e438a2a4 17/50: fix author action byline non-grouped notifs: use display-name if poss,
ELPA Syncer <=