We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to spec, the getAllResponseHeaders should include trailing CRLF: https://xhr.spec.whatwg.org/#the-getallresponseheaders()-method
getAllResponseHeaders
Xdomains implementation does not contain trailing CRLF. https://github.com/jpillora/xdomain/blob/gh-pages/vendor/xhook.js#L226
This breaks behavior of superagent, which pops the trailing CRLF: https://github.com/visionmedia/superagent/blob/master/lib/client.js#L203
With xdomain trailing CRLF is not present, so the last header gets stripped.
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
Thanks, I have created the upstream issue as well. jpillora/xhook#72
No branches or pull requests
According to spec, the
getAllResponseHeaders
should include trailing CRLF:https://xhr.spec.whatwg.org/#the-getallresponseheaders()-method
Xdomains implementation does not contain trailing CRLF.
https://github.com/jpillora/xdomain/blob/gh-pages/vendor/xhook.js#L226
This breaks behavior of superagent, which pops the trailing CRLF:
https://github.com/visionmedia/superagent/blob/master/lib/client.js#L203
With xdomain trailing CRLF is not present, so the last header gets stripped.
The text was updated successfully, but these errors were encountered: