aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-profile.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/mastodon-profile.el')
-rw-r--r--lisp/mastodon-profile.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el
index 28f2e46..2c364da 100644
--- a/lisp/mastodon-profile.el
+++ b/lisp/mastodon-profile.el
@@ -297,10 +297,11 @@ Returns a list of lists."
(toots-count (mastodon-tl--as-string
(mastodon-profile--account-field
account 'statuses_count)))
+ (relationships (mastodon-profile--relationships-get id))
(followed-by-you (cdr (assoc 'following
- (aref (mastodon-profile--relationships-get id) 0))))
+ (aref relationships 0))))
(follows-you (cdr (assoc 'followed_by
- (aref (mastodon-profile--relationships-get id) 0))))
+ (aref relationships 0))))
(followsp (or (equal follows-you 't) (equal followed-by-you 't)))
(fields (mastodon-profile--fields-get account))
(pinned (mastodon-profile--get-statuses-pinned account)))