1
Fork 0

does this work idk qwq

This commit is contained in:
Ashley 2023-10-21 04:57:10 +00:00
parent d63cbc3690
commit 44f05a83af

View file

@ -46,18 +46,14 @@ async _getEngagementData() {
const { fetch } = await import("undici");
try {
const engagement = await fetch(apiUrl).then((res) => res.json());
return engagement;
} catch {
try {
const engagement = await fetch(fallbackUrl).then((res) => res.json());
var engagementP = await fetch(apiUrl).then((res) => res.json());
if(!engagementP.dislikes) {
var engagement = await fetch(fallbackUrl).then((res) => res.json());
return engagement;
} catch {
return null;
} else {
return engagementP;
}
}
}