diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-10 11:08:29 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-10 11:08:29 +0100 |
commit | 57678cf452c868f835a2e197995b44edea503565 (patch) | |
tree | d331403c2e93b0af83e7e27a9741d711bbd8a574 | |
parent | 1c068079574cd78c8bfd878f1d3fea5f54c7be98 (diff) |
cull stray nil arg from old --get-json-async args form
-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 338f227..be3ac1e 100644 --- a/lisp/mastodon-tl.el +++ b/lisp/mastodon-tl.el @@ -1172,7 +1172,7 @@ Then run CALLBACK with arguments CBARGS." "?") "max_id=" (mastodon-tl--as-string id))))) - (apply 'mastodon-http--get-json-async url nil callback cbargs))) + (apply 'mastodon-http--get-json-async url callback cbargs))) ;; TODO ;; Look into the JSON returned here by Local |