diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-03 21:44:06 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-03 21:44:06 +0100 |
commit | dde052a436b0c8fddf3a026fbcdfaaa74063029a (patch) | |
tree | a327d3b8efbeb0bd4b4eddf1b400c8e34546d0e0 | |
parent | 554dc37b36de840d60d66caf5539c90c02ac2f91 (diff) |
Revert "remove unused --append-query-string"
This reverts commit e2fd67b16104ab772a4ef962613cb9f3cb3cea52.
-rw-r--r-- | lisp/mastodon-http.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/mastodon-http.el b/lisp/mastodon-http.el index eebfa85..e3efabe 100644 --- a/lisp/mastodon-http.el +++ b/lisp/mastodon-http.el @@ -175,6 +175,13 @@ SILENT means don't message." (with-temp-buffer (mastodon-http--url-retrieve-synchronously url)))) +(defun mastodon-http--append-query-string (url params) + "Append PARAMS to URL as query strings and return it. + +PARAMS should be an alist as required by `url-build-query-string'." + (let ((query-string (url-build-query-string params))) + (concat url "?" query-string))) + ;; search functions: (defun mastodon-http--process-json-search () "Process JSON returned by a search query to the server." |