This commit is contained in:
Rizky 2024-02-04 15:03:06 +07:00
parent 42c4d97b1c
commit 64b64615d6
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ export const _ = {
headers: any; headers: any;
body: any; body: any;
}) { }) {
if (!arg.url) return new Response(null, { status: 403 }); if ((!!arg && !arg.url) || !arg) return new Response(null, { status: 403 });
const res = await fetch( const res = await fetch(
arg.url, arg.url,