mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 08:14:38 -05:00
add channel about checker
This commit is contained in:
parent
abcf0a3ed1
commit
b40877e0c2
1 changed files with 7 additions and 1 deletions
|
@ -72,6 +72,7 @@ async function video(v) {
|
||||||
if (v == null) return "Gib ID";
|
if (v == null) return "Gib ID";
|
||||||
|
|
||||||
let nightlyRes;
|
let nightlyRes;
|
||||||
|
var desc;
|
||||||
|
|
||||||
var inv_comments = await fetch(`${config.invapi}/comments/${v}`).then((res) =>
|
var inv_comments = await fetch(`${config.invapi}/comments/${v}`).then((res) =>
|
||||||
res.text()
|
res.text()
|
||||||
|
@ -97,11 +98,16 @@ async function video(v) {
|
||||||
summary_.title !== "Not found." ? summary_ : "none"
|
summary_.title !== "Not found." ? summary_ : "none"
|
||||||
);
|
);
|
||||||
|
|
||||||
const desc = a.Channel?.Contents.ItemSection.About.Description;
|
if (a.Channel?.Contents.ItemSection.About) {
|
||||||
|
desc = a.Channel?.Contents.ItemSection.About.Description;
|
||||||
|
} else {
|
||||||
|
desc = "No about section";
|
||||||
|
}
|
||||||
|
|
||||||
const data = await fetcher(v);
|
const data = await fetcher(v);
|
||||||
|
|
||||||
const nightlyJsonData = getJson(nightlyRes);
|
const nightlyJsonData = getJson(nightlyRes);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
json: data.video.Player,
|
json: data.video.Player,
|
||||||
video: await fetch(`${config.tubeApi}video?v=${v}`)
|
video: await fetch(`${config.tubeApi}video?v=${v}`)
|
||||||
|
|
Loading…
Reference in a new issue