mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 09:58:26 +01:00
add try catch :p
This commit is contained in:
parent
71b57c615e
commit
c82b42dbe5
1 changed files with 8 additions and 6 deletions
|
@ -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 a new issue