Fix apparent bug.
In the new-ish code for following redirections, the `strings' argument wasn't passed along as it did before.
This commit is contained in:
parent
76ab851d2a
commit
999e481785
|
@ -209,7 +209,7 @@
|
|||
(define (get-pure-port/headers url [strings '()] #:redirections [redirections 0])
|
||||
(let redirection-loop ([redirections redirections] [url url])
|
||||
(define ip
|
||||
(http://getpost-impure-port #t url #f '()))
|
||||
(http://getpost-impure-port #t url #f strings))
|
||||
(define status (read-line ip 'return-linefeed))
|
||||
(define-values (new-url chunked? headers)
|
||||
(let loop ([new-url #f] [chunked? #f] [headers '()])
|
||||
|
|
Loading…
Reference in New Issue
Block a user