diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-04-01 13:14:43 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-04-01 13:14:43 +0200 |
commit | a41c716456f5a8b4793646f453c81959cf9db0fe (patch) | |
tree | 9f714d8f74b695cbebb9aada15504d6f0ced9b52 /lisp/mastodon-views.el | |
parent | 37f76f3bcb5d1d33412c9517762db57dc469c22b (diff) |
add limit param to view list timeline.
Diffstat (limited to 'lisp/mastodon-views.el')
-rw-r--r-- | lisp/mastodon-views.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/mastodon-views.el b/lisp/mastodon-views.el index 558bf81..b55091f 100644 --- a/lisp/mastodon-views.el +++ b/lisp/mastodon-views.el @@ -325,7 +325,10 @@ If ID is provided, use that list." (endpoint (format "timelines/list/%s" id)) (name (mastodon-views--get-list-name id)) (buffer-name (format "list-%s" name))) - (mastodon-tl--init buffer-name endpoint 'mastodon-tl--timeline))) + (mastodon-tl--init buffer-name endpoint + 'mastodon-tl--timeline + nil + `(("limit" . ,mastodon-tl--timeline-posts-count))))) (defun mastodon-views--create-list () "Create a new list. |