revert change to url requesting

This commit is contained in:
AnimeDL 2023-01-23 11:25:02 -08:00
parent 736c403575
commit 28a85aa085

View file

@ -86,7 +86,7 @@ class Req {
}
// try do request
try {
const res = await got(loc, options) as unknown as Response<T>;
const res = await got(durl.toString(), options) as unknown as Response<T>;
return {
ok: true,
res