1
0
Fork 0
mirror of https://codeberg.org/ashley/poke.git synced 2025-01-19 15:23:28 -05:00

this is one of the commits ever lol

This commit is contained in:
Ashley 2023-10-21 05:10:02 +00:00
parent 44f05a83af
commit 3f2576c83c

View file

@ -46,14 +46,19 @@ async _getEngagementData() {
const { fetch } = await import("undici");
try {
var engagementP = await fetch(apiUrl).then((res) => res.json());
if(!engagementP.dislikes) {
if (typeof engagementP.dislikes === 'number') {
return engagementP;
} else {
throw new Error("API response doesn't contain valid dislikes count. Using fallback URL.");
}
} catch (error) {
var engagement = await fetch(fallbackUrl).then((res) => res.json());
return engagement;
} else {
return engagementP;
}
}