diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-03-01 22:33:38 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-03-01 22:33:38 +0100 |
commit | 6eb7c27bef937ec76f3dba0ae19b57de4561bf8f (patch) | |
tree | b90fac1e2707c30d1b65f5b9069380161659fb68 | |
parent | a46d541c7895320efeeb1ecb23dc73c3d78e7c01 (diff) |
FIX #398 -- bad if from bad brackets in --more
-rw-r--r-- | lisp/mastodon-tl.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/mastodon-tl.el b/lisp/mastodon-tl.el index ba6b1df..8197315 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -2789,12 +2789,12 @@ when showing followers or accounts followed." ;;(prev (cadr (mastodon-tl--link-header))) (url (mastodon-tl--build-link-header-url next))) (mastodon-http--get-response-async url nil 'mastodon-tl--more* (current-buffer) - (point) :headers)) - (mastodon-tl--more-json-async - (mastodon-tl--get-endpoint) - (mastodon-tl--oldest-id) - (mastodon-tl--update-params) - 'mastodon-tl--more* (current-buffer) (point)))))) + (point) :headers)))) + (mastodon-tl--more-json-async + (mastodon-tl--get-endpoint) + (mastodon-tl--oldest-id) + (mastodon-tl--update-params) + 'mastodon-tl--more* (current-buffer) (point)))) (defun mastodon-tl--more* (response buffer point-before &optional headers) "Append older toots to timeline, asynchronously. |