diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2022-08-17 16:29:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-17 16:29:26 +0200 |
commit | 0b0843e4a54d7c1ddf293ac1ccee2479b69a5ba9 (patch) | |
tree | f6a16b98ed589d8b2a49a5531bf3328fba49ac29 /ext/http/01_http.js | |
parent | a2ab5eee015b1dafc1a18cd2bc5f5c5756123d74 (diff) |
refactor(fetch/request): use callback for url and method (#15483)
Diffstat (limited to 'ext/http/01_http.js')
-rw-r--r-- | ext/http/01_http.js | 2 |
1 files changed, 1 insertions, 1 deletions
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, |