1
Fork 0

fixed the ReferenceError: Cannot access 'channel' before initialization error

This commit is contained in:
Ashley 2022-10-09 14:38:40 +02:00
parent cf46f15a0c
commit b5bfeab15a

View file

@ -76,7 +76,7 @@ async function video(v) {
.then((res) => res.text()) .then((res) => res.text())
.then((xml) => JSON.parse(toJson(xml))); .then((xml) => JSON.parse(toJson(xml)));
const channel = await channel(video.Video.Channel.id); const c = await channel(video.Video.Channel.id);
const summary = await wiki const summary = await wiki
.summary(video.Video.Channel.Name) .summary(video.Video.Channel.Name)
@ -91,7 +91,7 @@ async function video(v) {
video, video,
engagement: data.engagement, engagement: data.engagement,
wiki: summary, wiki: summary,
desc: channel.about.Channel.Contents.ItemSection.About.Description, desc: c.about.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()),