mirror of
https://codeberg.org/ashley/poke
synced 2025-04-05 17:17:59 +00:00
add try catch :p
This commit is contained in:
parent
71b57c615e
commit
c82b42dbe5
@ -69,13 +69,15 @@ async function video(v) {
|
||||
|
||||
let nightlyRes;
|
||||
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) =>
|
||||
res.text()
|
||||
);
|
||||
|
||||
var comments = await getJson(inv_comments);
|
||||
|
||||
var comments = await getJson(inv_comments);
|
||||
} catch {
|
||||
var comments = "";
|
||||
}
|
||||
var video_new_info = await fetch(`${config.invapi}/videos/${v}`).then((res) =>
|
||||
res.text()
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user