diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-10-07 10:06:24 +0200 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2023-10-07 10:06:24 +0200 |
commit | ac11c08a42ca7d78c14854cfdddff6e6b0cc0f23 (patch) | |
tree | f5c015d6c4ce1e8ec44d07fbcad8c4984d8d22ed /lisp/mastodon-http.el | |
parent | 7d49ecba22958b90e38d718420890a6e6eccdffd (diff) |
hotfix http-post error
Diffstat (limited to 'lisp/mastodon-http.el')
-rw-r--r-- | lisp/mastodon-http.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-http.el b/lisp/mastodon-http.el index cb4c323..ca82644 100644 --- a/lisp/mastodon-http.el +++ b/lisp/mastodon-http.el @@ -135,7 +135,7 @@ Authorization header is included by default unless UNAUTHENTICATED-P is non-nil. (when params (if json (json-encode params) - (fedi-http--build-params-string params)))) + (mastodon-http--build-params-string params)))) (url-request-extra-headers (append url-request-extra-headers ; auth set in macro (unless (assoc "Content-Type" headers) ; pleroma compat: |