match: remove redundant url argument

This commit is contained in:
dumbmoron
2024-05-15 12:46:08 +00:00
parent c5c3682462
commit 0a7cdfbbfe
2 changed files with 3 additions and 2 deletions

View File

@ -28,7 +28,8 @@ import dailymotion from "./services/dailymotion.js";
import { env } from '../config.js';
let freebind;
export default async function(host, patternMatch, url, lang, obj) {
export default async function(host, patternMatch, lang, obj) {
const { url } = obj;
assert(url instanceof URL);
let dispatcher, requestIP;