From 247a2e71eed80ed3d09d1e3eba90b306c6aeb347 Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Mon, 16 Jan 2023 08:53:26 +0100 Subject: tl--get-users-followings - set limit to 80 --- lisp/mastodon-tl.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." -- cgit v1.2.3