use invidious comments

This commit is contained in:
Ashley //// 2024-04-23 14:08:44 +00:00
parent 928a686cf5
commit 743229525a

View file

@ -84,7 +84,8 @@ class InnerTubePokeVidious {
let desc = ""; let desc = "";
try { try {
const [videoInfo, videoData] = await Promise.all([ const [invComments, videoInfo, videoData] = await Promise.all([
fetch(`${this.config.invapi}/comments/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text()),
fetch(`${this.config.invapi}/videos/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text()), fetch(`${this.config.invapi}/videos/${v}?hl=${contentlang}&region=${contentregion}&h=${btoa(Date.now())}`).then((res) => res.text()),
curly curly
.get(`${this.config.tubeApi}video?v=${v}`, { .get(`${this.config.tubeApi}video?v=${v}`, {
@ -98,7 +99,7 @@ class InnerTubePokeVidious {
]); ]);
const comments = await yt.getComments(v); const comments = await this.getJson(invComments);
const vid = await this.getJson(videoInfo); const vid = await this.getJson(videoInfo);
const { json, video } = videoData; const { json, video } = videoData;