mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 15:08:26 +01:00
add try and catch to about section
This commit is contained in:
parent
cfb0176d21
commit
1f9f5aaf6f
1 changed files with 10 additions and 7 deletions
|
@ -111,13 +111,16 @@ module.exports = function (app, config, renderTemplate) {
|
|||
const ID = req.query.id;
|
||||
const tab = req.query.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));
|
||||
|
||||
try {
|
||||
// about
|
||||
const bout = await modules.fetch(
|
||||
config.tubeApi + `channel?id=${ID}&tab=about`
|
||||
);
|
||||
const h = await bout.text();
|
||||
var k = JSON.parse(modules.toJson(h));
|
||||
} catch {
|
||||
k = " ";
|
||||
}
|
||||
if (req.query.continuation) {
|
||||
var continuation = req.query.continuation;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue