1
Fork 0

does this work idk qwq

This commit is contained in:
Ashley 2023-10-21 05:12:57 +00:00
parent 3f2576c83c
commit 2c52963c84

View file

@ -41,13 +41,21 @@ class PokeTubeDislikesAPIManager {
* @private * @private
*/ */
async _getEngagementData() { async _getEngagementData() {
const apiUrl = `https://p.poketube.fun/api?v=${this.videoId}&hash=d0550b6e28c8f93533a569c314d5b4e2`; const apiUrl = `https://p.poketube.fun/api?v=${this.videoId}&hash=d0550b6e28c8f93533a569c314d5b4e2`;
const fallbackUrl = `https://returnyoutubedislikeapi.com/votes?videoId=${this.videoId}`; const fallbackUrl = `https://returnyoutubedislikeapi.com/votes?videoId=${this.videoId}`;
const { fetch } = await import("undici"); const { fetch } = await import("undici");
try { try {
var engagementP = await fetch(apiUrl).then((res) => res.json()); // Set a timeout of 2 seconds.
const timeoutMilliseconds = 2000; // 2 seconds
var engagementP = await fetch(apiUrl, { timeout: timeoutMilliseconds })
.then((res) => {
if (res.statusCode === 504) {
throw new Error("Request timed out.");
}
return res.json();
});
if (typeof engagementP.dislikes === 'number') { if (typeof engagementP.dislikes === 'number') {
return engagementP; return engagementP;
@ -55,10 +63,12 @@ try {
throw new Error("API response doesn't contain valid dislikes count. Using fallback URL."); throw new Error("API response doesn't contain valid dislikes count. Using fallback URL.");
} }
} catch (error) { } catch (error) {
var engagement = await fetch(fallbackUrl).then((res) => res.json()); console.error(error);
var engagement = await fetch(fallbackUrl).then((res) => res.json());
return engagement; return engagement;
} }
} }