From 1fb2e23a6747a4f774e63639eb522cb34aadbf42 Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Sun, 6 Jun 2021 15:37:17 +0200 Subject: feat(fetch): implement abort (#10863) This commit introduces fetch aborting via an AbortSignal. --- runtime/js/40_http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/js') diff --git a/runtime/js/40_http.js b/runtime/js/40_http.js index d4b658314..63f64545f 100644 --- a/runtime/js/40_http.js +++ b/runtime/js/40_http.js @@ -72,7 +72,7 @@ headersList, body !== null ? new InnerBody(body) : null, ); - const request = fromInnerRequest(innerRequest, "immutable"); + const request = fromInnerRequest(innerRequest, null, "immutable"); const respondWith = createRespondWith(this, responseSenderRid); -- cgit v1.2.3