Fix asset redirect

This commit is contained in:
I-Have-An-Issue 2022-10-14 21:43:28 -04:00
parent 39c825b54f
commit fb7514d893
No known key found for this signature in database
GPG Key ID: E55435DEA0825091
1 changed files with 1 additions and 1 deletions

View File

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