try catch to video as well ig

This commit is contained in:
Ashley 2023-01-24 09:10:06 +00:00
parent c82b42dbe5
commit be0e30ed4f

View file

@ -78,11 +78,16 @@ async function video(v) {
} catch { } catch {
var comments = ""; var comments = "";
} }
var video_new_info = await fetch(`${config.invapi}/videos/${v}`).then((res) => try {
res.text() 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)) { if (checkUnexistingObject(vid)) {
var a; var a;