mirror of
https://codeberg.org/ashley/poke
synced 2025-04-05 17:17:59 +00:00
try catch to video as well ig
This commit is contained in:
parent
c82b42dbe5
commit
be0e30ed4f
@ -78,11 +78,16 @@ async function video(v) {
|
||||
} catch {
|
||||
var comments = "";
|
||||
}
|
||||
var video_new_info = await fetch(`${config.invapi}/videos/${v}`).then((res) =>
|
||||
res.text()
|
||||
);
|
||||
try {
|
||||
var video_new_info = await fetch(`${config.invapi}/videos/${v}`).then(
|
||||
(res) => res.text()
|
||||
);
|
||||
|
||||
var vid = await getJson(video_new_info);
|
||||
} catch {
|
||||
var vid = "";
|
||||
}
|
||||
|
||||
var vid = await getJson(video_new_info);
|
||||
if (checkUnexistingObject(vid)) {
|
||||
var a;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user