add more urls :3

This commit is contained in:
Ashley 2023-02-25 19:39:16 +00:00
parent 1879f210b8
commit fa33ae3f5b

View file

@ -87,7 +87,9 @@ async function video(v) {
const urls = [
"invidious.sethforprivacy.com",
"invidious.weblibre.org",
"inv.vern.cc"
"inv.vern.cc",
"invidious.privacydev.net",
"inv.zzls.xyz"
];
let vid;
@ -96,7 +98,7 @@ for (const url of urls) {
const videoInfo = await fetch(`https://${url}/api/v1/videos/${v}`).then(res => res.text());
vid = await getJson(videoInfo);
if (vid.descriptionHtml !== "<p></p>") {
if (vid?.descriptionHtml !== "<p></p>") {
break;
}
}