Re: [whatwg/fetch] Question — Why can I not read the stream again ? (#196)

@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