aboutsummaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mastodon.el5
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el
index 13a410b..2dc075a 100644
--- a/lisp/mastodon.el
+++ b/lisp/mastodon.el
@@ -295,9 +295,8 @@ not, just browse the URL in the normal fashion."
((not (seq-empty-p
(alist-get 'accounts response)))
(let* ((accounts (assoc 'accounts response))
- (account (seq-first (cdr accounts)))
- (account-acct (alist-get 'acct account)))
- (mastodon-profile--show-user account-acct)))
+ (account (seq-first (cdr accounts))))
+ (mastodon-profile--make-author-buffer account)))
(t
(browse-url query))))))))