1
Fork 0

Update src/libpoketube/libpoketube-dislikes.js

This commit is contained in:
Ashley 2023-11-12 17:25:04 +00:00
parent ed1b646a40
commit cb9342a799

View file

@ -35,13 +35,13 @@ class PokeTubeDislikesAPIManager {
}
}
/**
/**
* Retrieves engagement data for the YouTube video.
* @returns {Promise<object|null>} A Promise that resolves with the engagement data, or null if an error occurs.
* @private
*/
async _getEngagementData() {
const fallbackUrl = `https://returnyoutubedislikeapi.com/votes?videoId=${this.videoId}&cachefixer=${btoa(Date.now())}`;
const fallbackUrl = `https://prod-poketube.testing.poketube.fun/api?v=${this.videoId}`;
const { fetch } = await import("undici");
@ -49,6 +49,7 @@ class PokeTubeDislikesAPIManager {
return engagement;
}
/**
* Retrieves data about the YouTube video and its engagement.
* @returns {Promise<object>} A Promise that resolves with an object containing video and engagement data.