1
Fork 0
This commit is contained in:
Ashley //// 2024-04-25 17:53:54 +00:00
parent b9992fc0df
commit 3270d2b5a0

View file

@ -112,7 +112,7 @@ async getYouTubeApiVideo(f, v, contentlang, contentregion) {
let retryCount = 0;
while (vid.error && retryCount < 1) {
console.log(`Retrying fetching videoInfo... Retry ${retryCount + 1}`);
const retryVideoInfo = await fetch(`https://iv.ggtyler.dev/videos/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text());
const retryVideoInfo = await fetch(`https://iv.ggtyler.dev/api/v1/videos/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text());
vid = await this.getJson(retryVideoInfo);
retryCount++;
}