1
Fork 0

add try and catch to about section

This commit is contained in:
Ashley 2022-12-21 08:25:16 +00:00
parent cfb0176d21
commit 1f9f5aaf6f

View file

@ -111,13 +111,16 @@ module.exports = function (app, config, renderTemplate) {
const ID = req.query.id;
const tab = req.query.tab;
try {
// about
const bout = await modules.fetch(
config.tubeApi + `channel?id=${ID}&tab=about`
);
const h = await bout.text();
const k = JSON.parse(modules.toJson(h));
var k = JSON.parse(modules.toJson(h));
} catch {
k = " ";
}
if (req.query.continuation) {
var continuation = req.query.continuation;
}