- From: kingadrianzghibarta <notifications@github.com>
- Date: Fri, 28 Oct 2016 06:07:25 -0700
- To: whatwg/fetch <fetch@noreply.github.com>
Received on Friday, 28 October 2016 13:08:03 UTC
@jakearchibald This doesn't resolve the original problem, for exemple :
`const responsePromise = fetch(NetworkingUrls.authUrl, requestData);
responsePromise.then((response) => NetworkingManager.logRequestInfo(response, requestData));
responsePromise.then((response) => NetworkingManager.checkStatus(response, requestData))
.then((response) => response.json())
.then(NetworkingManager.checkJson)
.then((responseJson) => {
successHandler(responseJson);
})
.catch((error) => {
failureHandler(error.message);
})`
In that case you will get the same error.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/196#issuecomment-256915531
Received on Friday, 28 October 2016 13:08:03 UTC