add a check if json variable exists or not

Signed-off-by: Ashley <iamashley@duck.com>
This commit is contained in:
Ashley 2022-12-24 11:30:00 +00:00
parent 29cf785969
commit ab1bb9bd45

View file

@ -119,22 +119,27 @@ module.exports = function (app, config, renderTemplate) {
let url;
if (j_.URL != undefined) url = j_.URL;
if ("Title" in json) {
// json response
const re = {
main: {
video_id: sha384(json.id),
channel: sha384(json.Channel.Name),
title: sha384(json.Title),
date: sha384(btoa(Date.now()).toString()),
},
video: {
title: sha384(json.Title),
url: sha384(url),
},
};
//checks if json exists
if (json) {
//checks if title exists in the json object
res.json(re);
if ("Title" in json) {
// json response
const re = {
main: {
video_id: sha384(json.id),
channel: sha384(json.Channel.Name),
title: sha384(json.Title),
date: sha384(btoa(Date.now()).toString()),
},
video: {
title: sha384(json.Title),
url: sha384(url),
},
};
res.json(re);
}
}
});