killing myself

This commit is contained in:
I-Have-An-Issue 2022-10-14 23:16:12 -04:00
parent 112e5f9ce8
commit 3546ad75f1
No known key found for this signature in database
GPG Key ID: E55435DEA0825091
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ export function GET({ url }) {
return new Response("", { return new Response("", {
status: 302, status: 302,
headers: { headers: {
Location: `https://assetdelivery.roblox.com/v1/asset/?id=${url.searchParams.get("id")}${url.searchParams.get("id") ? `&version=${url.searchParams.get("id")}` : ""}` Location: `https://assetdelivery.roblox.com/v1/asset/?id=${url.searchParams.get("id")}`
} }
}); });
} }

View File

@ -3,7 +3,7 @@ export function GET({ url }) {
return new Response("", { return new Response("", {
status: 302, status: 302,
headers: { headers: {
Location: `https://assetdelivery.roblox.com/v1/asset/?id=${url.searchParams.get("id")}${url.searchParams.get("id") ? `&version=${url.searchParams.get("id")}` : ""}` Location: `https://assetdelivery.roblox.com/v1/asset/?id=${url.searchParams.get("id")}`
} }
}); });
} }