diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-01-16 08:53:26 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-01-16 08:53:26 +0100 |
commit | 247a2e71eed80ed3d09d1e3eba90b306c6aeb347 (patch) | |
tree | 2eb714807fe02f6d2776ee0d5dfdb3f74fed1b60 /lisp/mastodon-tl.el | |
parent | 3080367aff71487cab83cabf52c62d22e0a42167 (diff) |
tl--get-users-followings - set limit to 80
Diffstat (limited to 'lisp/mastodon-tl.el')
-rw-r--r-- | lisp/mastodon-tl.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index 9234b77..dd17988 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -1883,7 +1883,7 @@ a: add account to this list, r: remove account from this list" "Return the list of followers of the logged in account." (let* ((id (mastodon-auth--get-account-id)) (url (mastodon-http--api (format "accounts/%s/following" id)))) - (mastodon-http--get-json url))) + (mastodon-http--get-json url '(("limit" . "80"))))) ; max 80 accounts (defun mastodon-tl--add-account-to-list-at-point () "Prompt for account and add to list at point." |