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"); const { fetch } = await import("undici");
var engagementP = await fetch(apiUrl).then((res) => res.json());
try {
const engagement = await fetch(apiUrl).then((res) => res.json()); if(!engagementP.dislikes) {
return engagement; var engagement = await fetch(fallbackUrl).then((res) => res.json());
} catch {
try {
const engagement = await fetch(fallbackUrl).then((res) => res.json());
return engagement; return engagement;
} catch { } else {
return null; return engagementP;
} }
}
} }