From efcbfd5206fcdfac55c26a7133c04dd330d047b9 Mon Sep 17 00:00:00 2001 From: Isaiah Gamble <77396670+tsar-boomba@users.noreply.github.com> Date: Sat, 14 Jan 2023 23:08:34 -0500 Subject: fix(ext/fetch) Fix request clone error in flash server (#16174) --- ext/http/01_http.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'ext/http') 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, -- cgit v1.2.3