1
Fork 0

does this work idk qwq

This commit is contained in:
Ashley 2023-10-21 07:33:00 +00:00
parent 0ade5a6253
commit 38de757f54

View file

@ -41,14 +41,11 @@ class PokeTubeDislikesAPIManager {
* @private
*/
async _getEngagementData() {
var url = [`https://p.poketube.fun/api?v=${this.videoId}&hash=d0550b6e28c8f93533a569c314d5b4e2`, `https://returnyoutubedislikeapi.com/votes?videoId=${this.videoId}`]
const dislikes =
url[Math.floor(Math.random() * url.length)];
const fallbackUrl = `https://returnyoutubedislikeapi.com/votes?videoId=${this.videoId}`;
const { fetch } = await import("undici");
const engagement = await fetch(dislikes).then((res) => res.json());
const engagement = await fetch(fallbackUrl).then((res) => res.json());
return engagement;
}