mirror of
https://codeberg.org/ashley/poke
synced 2025-04-06 01:27:59 +00:00
add try and catch to about section
This commit is contained in:
parent
e3197fec54
commit
2c237a8334
@ -111,13 +111,16 @@ module.exports = function (app, config, renderTemplate) {
|
|||||||
const ID = req.query.id;
|
const ID = req.query.id;
|
||||||
const tab = req.query.tab;
|
const tab = req.query.tab;
|
||||||
|
|
||||||
// about
|
try {
|
||||||
const bout = await modules.fetch(
|
// about
|
||||||
config.tubeApi + `channel?id=${ID}&tab=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));
|
const h = await bout.text();
|
||||||
|
var k = JSON.parse(modules.toJson(h));
|
||||||
|
} catch {
|
||||||
|
k = " ";
|
||||||
|
}
|
||||||
if (req.query.continuation) {
|
if (req.query.continuation) {
|
||||||
var continuation = req.query.continuation;
|
var continuation = req.query.continuation;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user