1
Fork 0

add try catch :p

This commit is contained in:
Ashley 2023-01-24 09:01:44 +00:00
parent 71b57c615e
commit c82b42dbe5

View file

@ -69,13 +69,15 @@ async function video(v) {
let nightlyRes; let nightlyRes;
var desc = ""; var desc = "";
try {
var inv_comments = await fetch(`${config.invapi}/comments/${v}`).then(
(res) => res.text()
);
var inv_comments = await fetch(`${config.invapi}/comments/${v}`).then((res) => var comments = await getJson(inv_comments);
res.text() } catch {
); var comments = "";
}
var comments = await getJson(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()
); );