fix a issue

This commit is contained in:
Ashley 2022-10-13 17:49:10 +02:00
parent 14394c3da2
commit 0fbdd6b000

View file

@ -93,7 +93,17 @@ async function video(v) {
var vid = await JSON.parse(video_new_info); var vid = await JSON.parse(video_new_info);
const c = await channel(video.Video.Channel.id); const c = await fetch(
`${config.tubeApi}channel?id=${video.Video.Channel.id}&tab=videos`
)
.then((res) => res.text())
.then((xml) => JSON.parse(toJson(xml)));
const a = await fetch(
`${config.tubeApi}channel?id=${video.Video.Channel.id}&tab=about`
)
.then((res) => res.text())
.then((xml) => JSON.parse(toJson(xml)));
const summary = await wiki const summary = await wiki
.summary(video.Video.Channel.Name) .summary(video.Video.Channel.Name)
@ -107,10 +117,11 @@ async function video(v) {
json: data.video.Player, json: data.video.Player,
video, video,
vid, vid,
channel: c,
comments, comments,
engagement: data.engagement, engagement: data.engagement,
wiki: summary, wiki: summary,
desc: c.about.Channel.Contents.ItemSection.About.Description, desc: a.Channel.Contents.ItemSection.About.Description,
color: await getColors( color: await getColors(
`https://i.ytimg.com/vi/${v}/maxresdefault.jpg` `https://i.ytimg.com/vi/${v}/maxresdefault.jpg`
).then((colors) => colors[0].hex()), ).then((colors) => colors[0].hex()),