Change ancient/cat endpoint

This commit is contained in:
Essem 2022-10-10 15:15:25 -05:00
parent ba46701589
commit 0ce38d8719
No known key found for this signature in database
GPG Key ID: 7D497397CC3A2A8C
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ class AncientCommand extends Command {
controller.abort();
}, 15000);
try {
const data = await request("https://projectlounge.pw/meme/", { method: "HEAD", signal: controller.signal });
const data = await request("https://files.projectlounge.pw/meme/", { method: "HEAD", signal: controller.signal });
clearTimeout(timeout);
return data.headers.location;
} catch (e) {

View File

@ -9,7 +9,7 @@ class CatCommand extends Command {
controller.abort();
}, 15000);
try {
const data = await request("https://projectlounge.pw/cta/", { method: "HEAD", signal: controller.signal });
const data = await request("https://files.projectlounge.pw/cta/", { method: "HEAD", signal: controller.signal });
clearTimeout(timeout);
return data.headers.location;
} catch (e) {