add try catch :p

This commit is contained in:
Ashley 2023-01-12 16:14:31 +00:00
parent ab42b34418
commit a7c3d42b78

View file

@ -128,6 +128,7 @@ module.exports = function (app, config, renderTemplate) {
const h = await video.text();
const k = JSON.parse(modules.toJson(h));
if (!v) res.redirect("/");
try {
if ("Formats" in fetching.video.Player) {
//video
const j = fetching.video.Player.Formats.Format,
@ -158,6 +159,9 @@ module.exports = function (app, config, renderTemplate) {
}
}
}
} catch {
res.json("error in parsing");
}
});
app.get("/watch", async function (req, res) {