aboutsummaryrefslogtreecommitdiff
path: root/lisp/mastodon-http.el
diff options
context:
space:
mode:
authormarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-05-16 10:32:43 +0200
committermarty hiatt <martianhiatus [a t] riseup [d o t] net>2023-05-16 10:32:43 +0200
commit14a5358806407a881748b9bbe9bdd113743a2acf (patch)
tree1b800be15b22d192252ee1bb421cfa7a62819485 /lisp/mastodon-http.el
parentdfe1fb7aabe43bb8dbad198f31752c92d191e7d0 (diff)
Revert "use url-http-end-of-headers in http.el" To fix tests
This reverts commit 6d05cf81ff5a84aa12735aeab2ac99a083c15033.
Diffstat (limited to 'lisp/mastodon-http.el')
-rw-r--r--lisp/mastodon-http.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-http.el b/lisp/mastodon-http.el
index a2094be..5dd4fda 100644
--- a/lisp/mastodon-http.el
+++ b/lisp/mastodon-http.el
@@ -193,7 +193,7 @@ Callback to `mastodon-http--get-response-async', usually
(let ((headers (unless no-headers
(mastodon-http--process-headers))))
(goto-char (point-min))
- (goto-char url-http-end-of-headers)
+ (re-search-forward "^$" nil 'move)
(let ((json-array-type (if vector 'vector 'list))
(json-string (decode-coding-string
(buffer-substring-no-properties (point) (point-max))
@@ -216,7 +216,7 @@ Callback to `mastodon-http--get-response-async', usually
(goto-char (point-min))
(let* ((head-str (buffer-substring-no-properties
(point-min)
- (goto-char url-http-end-of-headers)))
+ (re-search-forward "^$" nil 'move)))
(head-list (split-string head-str "\n")))
(mapcar (lambda (x)
(let ((list (split-string x ": ")))