We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a9b933 commit 39b0f2dCopy full SHA for 39b0f2d
lib/web/fetch/index.js
@@ -1867,7 +1867,7 @@ async function httpNetworkFetch (
1867
response = makeResponse({ status, statusText, headersList, socket })
1868
} else {
1869
const iterator = body[Symbol.asyncIterator]()
1870
- fetchParams.controller.next = () => iterator.next()
+ fetchParams.controller.next = iterator.next.bind(iterator)
1871
1872
response = makeResponse({ status, statusText, headersList })
1873
}
0 commit comments