mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 07:18:26 +01:00
add more urls :3
This commit is contained in:
parent
2adefe0d58
commit
64845ec996
1 changed files with 4 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue