diff options
| author | Isaiah Gamble <77396670+tsar-boomba@users.noreply.github.com> | 2023-01-14 23:08:34 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-15 05:08:34 +0100 |
| commit | efcbfd5206fcdfac55c26a7133c04dd330d047b9 (patch) | |
| tree | d34f0cccd2ffc0cde77e6bcdbc6fa8cf5f64f9b8 /ext/http | |
| parent | fd85f840cd707c31d08fa836562127e249c9ff62 (diff) | |
fix(ext/fetch) Fix request clone error in flash server (#16174)
Diffstat (limited to 'ext/http')
| -rw-r--r-- | ext/http/01_http.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ext/http/01_http.js b/ext/http/01_http.js index a6c1a06fc..8151d5a74 100644 --- a/ext/http/01_http.js +++ b/ext/http/01_http.js @@ -135,7 +135,12 @@ false, ); const signal = abortSignal.newSignal(); - const request = fromInnerRequest(innerRequest, signal, "immutable"); + const request = fromInnerRequest( + innerRequest, + signal, + "immutable", + false, + ); const respondWith = createRespondWith( this, |
