diff options
author | marty hiatt <martianhiatus@riseup.net> | 2023-10-24 14:28:27 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus@riseup.net> | 2023-10-24 14:28:27 +0200 |
commit | 48d362c6d9ab28fa7c0c0c78eae038a5551ddc5a (patch) | |
tree | fc4bbdfd10fd274c4d3a8b28348a37ae3d06677b | |
parent | 78ff4a75ea22635dced765a94a48b0512c412811 (diff) |
no pagination for lists
-rw-r--r-- | lisp/mastodon-tl.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index e279ee3..7f03e9f 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -2375,7 +2375,8 @@ and profile pages when showing followers or accounts followed." (mastodon-http--get-response-async url nil 'mastodon-tl--more* (current-buffer) (point) :headers)))) (cond ( ; no paginate - (mastodon-tl--buffer-type-eq 'follow-suggestions) + (or (mastodon-tl--buffer-type-eq 'follow-suggestions) + (mastodon-tl--buffer-type-eq 'lists)) (message "No more results")) ;; offset paginate (search, trending, user lists, ...?): ((or (string-prefix-p "*mastodon-trending-" (buffer-name)) |