-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
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
Fetch api compatibility #133
Comments
hey, thanks for pointing this out. I will get a fix out asap |
Thanks! 👍 |
This is fixed in v0.9 which should be out soon |
I'm finding essential code which worked prior to the latest Canary now doesn't work. The problem seems to be it is consuming the body (bodyUsed: true) yet the value (res.json()) is still a promise after then() completes.
Just wondering if you'll be releasing v0.9 very soon or if I should try to find a workaround. thanks! |
I can do a hotfix on the v0.8 branch if this is an issue |
If this is a known problem then that would be really helpful. My code only broke since updating Chrome. |
Hey, Marty v0.8.13 is out which has the fix for this bug. |
thanks for that. I haven't been able to fully test it due to another issue but on first glance it fixes the problem. one little issue is I had to manually install babel from the marty directory. |
Hmm, that shouldn't be needed. I think babelify leaked in from the v0.9 release. I will switch that back now. Thanks
|
This is fixed in v0.8.14 Thanks |
I had to manually install reactify as well. (= |
should be fixed now. Sorry about this On 5 March 2015 at 17:20, David H. Mason [email protected] wrote:
http://twitter.com/jhollingworth | http://github.com/jhollingworth | |
Fetch does not work as expected in Chrome Canary, where fetch is a native implementation. My main issue was with the http source, in the
getHeader
function, there is a use of headers.map which appears to be non-standard, or at least not implemented in Chrome Canary nor original fetch polyfill (as far as I can see). Using theHeaders.get()
method instead should fix this issueThe text was updated successfully, but these errors were encountered: