diff options
Diffstat (limited to 'ext/url/00_url.js')
-rw-r--r-- | ext/url/00_url.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/url/00_url.js b/ext/url/00_url.js index da5849d43..3c3f2b1d0 100644 --- a/ext/url/00_url.js +++ b/ext/url/00_url.js @@ -46,7 +46,7 @@ function opUrlReparse(href, setter, value) { href, setter, value, - componentsBuf.buffer, + componentsBuf, ); return getSerialization(status, href); } @@ -54,12 +54,12 @@ function opUrlReparse(href, setter, value) { function opUrlParse(href, maybeBase) { let status; if (maybeBase === undefined) { - status = ops.op_url_parse(href, componentsBuf.buffer); + status = ops.op_url_parse(href, componentsBuf); } else { status = ops.op_url_parse_with_base( href, maybeBase, - componentsBuf.buffer, + componentsBuf, ); } return getSerialization(status, href, maybeBase); |