Skip to content
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

fix(H2 Client): bind stream 'data' listener only after received 'response' event #2985

Merged
merged 6 commits into from
Mar 25, 2024
Prev Previous commit
Next Next commit
Revert "fix(fetch): pause stream if data is received before headers i…
…n HTTP/2"

This reverts commit cd2eaf4.
  • Loading branch information
st3ffgv4 committed Mar 23, 2024
commit cf6a5ea81b335cc142cde3dc40fa6a263eba3a54
2 changes: 1 addition & 1 deletion lib/web/fetch/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2230,7 +2230,7 @@ async function httpNetworkFetch (

// 4. See pullAlgorithm...

return this.body ? this.body.push(bytes) : false
return this.body.push(bytes)
},

onComplete () {
Expand Down