Comment Improvements v2 pog

This commit is contained in:
Ashley 2022-10-22 16:58:54 +02:00
parent 6a1f626004
commit 4424c5d9a9

View file

@ -1,4 +1,4 @@
/* /*
PokeTube is a Free/Libre youtube front-end ! PokeTube is a Free/Libre youtube front-end !
@ -87,6 +87,7 @@ async function video(v) {
var comments = await JSON.parse(inv_comments); var comments = await JSON.parse(inv_comments);
var video_new_info = await fetch(`${config.invapi}/videos/${v}`).then((res) => var video_new_info = await fetch(`${config.invapi}/videos/${v}`).then((res) =>
res.text() res.text()
); );
@ -106,7 +107,7 @@ async function video(v) {
.then((xml) => JSON.parse(toJson(xml))); .then((xml) => JSON.parse(toJson(xml)));
const summary = await wiki const summary = await wiki
.summary(video.Video.Channel.Name) .summary(video.Video.Channel.Name + " ")
.then((summary_) => (summary_.title !== "Not found." ? summary_ : "none")); .then((summary_) => (summary_.title !== "Not found." ? summary_ : "none"));
const data = await fetcher(v); const data = await fetcher(v);
@ -125,15 +126,7 @@ async function video(v) {
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()),
b: nightlyJsonData !== null, };
...(nightlyJsonData !== null
? {
beta: nightlyJsonData,
badges: nightlyJsonData.channel.badges[0],
comments: nightlyJsonData.commentCount,
}
: {}),
};
} }
async function search(query, cnt) { async function search(query, cnt) {