This commit is contained in:
biglyderv 2025-01-31 18:35:53 -05:00
parent 8d0274e00c
commit a855057c6e

View file

@ -32,7 +32,7 @@ async function urlCollector(url, path, file) {
} else if (h.startsWith('/')) { } else if (h.startsWith('/')) {
let u = new URL(url); let u = new URL(url);
u.pathname = h; u.pathname = h;
urls.push(u.toString()) h = u.toString();
} }
urls.push(h) urls.push(h)
}) })