switch to undici :3

This commit is contained in:
Ashley 2023-08-21 21:10:39 +00:00
parent 5554cb543e
commit e888271e4a

View file

@ -8,7 +8,6 @@
const { curly } = require("node-libcurl");
const { toJson } = require("xml2json");
const fetch = require("node-fetch");
const YOUTUBE_URL = "https://www.youtube.com/watch?v=";
const DISLIKE_API = "https://p.poketube.fun/api?v=";
@ -58,6 +57,9 @@ class PokeTubeAPI {
const apiUrl = `${DISLIKE_API}${this.videoId}`;
const fallbackUrl = `https://returnyoutubedislikeapi.com/votes?videoId=${this.videoId}`;
const { fetch } = await import("undici");
try {
const engagement = await fetch(apiUrl).then((res) => res.json());
return engagement.data;