diff options
author | mousebot <mousebot@riseup.net> | 2021-10-05 18:52:05 +0200 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-10-05 18:52:05 +0200 |
commit | 3df45c1cd655f3c3555c47d6cfaf023ef13b6ca7 (patch) | |
tree | acd2169c602bddc9e6c1d6539218e76256eb67b8 /lisp/mastodon-profile.el | |
parent | fdd3ea487b6485dd210f5ee99836f900f23823b4 (diff) |
get relationships for a user with 1 rather than 2 requests
Diffstat (limited to 'lisp/mastodon-profile.el')
-rw-r--r-- | lisp/mastodon-profile.el | 5 |
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))) |