Skip to content

Commit

Permalink
Revert "fix(fetch): pause stream if data is received before headers i…
Browse files Browse the repository at this point in the history
…n HTTP/2"

This reverts commit cd2eaf4.
  • Loading branch information
st3ffgv4 committed Mar 23, 2024
1 parent cd2eaf4 commit cf6a5ea
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit cf6a5ea

Please sign in to comment.