faster fetching :3

This commit is contained in:
Ashley 2022-10-11 16:43:22 +02:00
parent 0f2a54bb50
commit 55d28b19d7

View file

@ -27,6 +27,8 @@ module.exports = async function (video_id) {
const dislike = await fetch(`${dislike_api}${video_id}`).then((res) => const dislike = await fetch(`${dislike_api}${video_id}`).then((res) =>
res.json() res.json()
); );
const dislikes = dislike.dislikes || "none"; const dislikes = dislike.dislikes || "none";
const headers = {}; const headers = {};
@ -41,6 +43,7 @@ module.exports = async function (video_id) {
var h = await player.text(); var h = await player.text();
var j = toJson(h); var j = toJson(h);
return JSON.parse(j); return JSON.parse(j);
break;
} catch (err) { } catch (err) {
if (err.status === 503) { if (err.status === 503) {
// retry after a bit // retry after a bit