From 0b0843e4a54d7c1ddf293ac1ccee2479b69a5ba9 Mon Sep 17 00:00:00 2001 From: Leo Kettmeir Date: Wed, 17 Aug 2022 16:29:26 +0200 Subject: refactor(fetch/request): use callback for url and method (#15483) --- ext/http/01_http.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/http/01_http.js') diff --git a/ext/http/01_http.js b/ext/http/01_http.js index 34457ab0b..7dfe86a75 100644 --- a/ext/http/01_http.js +++ b/ext/http/01_http.js @@ -124,7 +124,7 @@ } const innerRequest = newInnerRequest( - method, + () => method, url, () => ops.op_http_headers(streamRid), body !== null ? new InnerBody(body) : null, -- cgit v1.2.3