mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 04:28:34 +01:00
does this work idk qwq
This commit is contained in:
parent
0ade5a6253
commit
38de757f54
1 changed files with 2 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue