aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/mastodon-tl.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el
index f23fe67..2fa3526 100644
--- a/lisp/mastodon-tl.el
+++ b/lisp/mastodon-tl.el
@@ -1371,7 +1371,9 @@ NOTIFY is only non-nil when called by `mastodon-tl--follow-user'."
(mastodon-profile--lookup-account-in-status
user-handle (mastodon-profile--toot-json))))
(user-id (mastodon-profile--account-field account 'id))
- (name (mastodon-profile--account-field account 'display_name))
+ (name (if (not (equal "" (mastodon-profile--account-field account 'display_name)))
+ (mastodon-profile--account-field account 'display_name)
+ (mastodon-profile--account-field account 'username)))
(url (mastodon-http--api
(if notify
(format "accounts/%s/%s?notify=%s" user-id action notify)