mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 10:58:25 +01:00
fixed the ReferenceError: Cannot access 'channel' before initialization error
This commit is contained in:
parent
cf46f15a0c
commit
b5bfeab15a
1 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ async function video(v) {
|
|||
.then((res) => res.text())
|
||||
.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
|
||||
.summary(video.Video.Channel.Name)
|
||||
|
@ -91,7 +91,7 @@ async function video(v) {
|
|||
video,
|
||||
engagement: data.engagement,
|
||||
wiki: summary,
|
||||
desc: channel.about.Channel.Contents.ItemSection.About.Description,
|
||||
desc: c.about.Channel.Contents.ItemSection.About.Description,
|
||||
color: await getColors(
|
||||
`https://i.ytimg.com/vi/${v}/maxresdefault.jpg`
|
||||
).then((colors) => colors[0].hex()),
|
||||
|
|
Loading…
Reference in a new issue