make the channel pages faster,,

This commit is contained in:
ashley 2024-07-15 17:47:55 +00:00
parent e2120319f4
commit 4b76c5187b

View file

@ -210,16 +210,8 @@ module.exports = function (app, config, renderTemplate) {
const tab = req.query.tab; const tab = req.query.tab;
const cache = {}; const cache = {};
try {
// about
const bout = await fetch(config.tubeApi + `channel?id=${ID}&tab=about`);
const h = await bout.text();
var boutJson = JSON.parse(modules.toJson(h));
} catch {
boutJson = " ";
}
const continuation = req.query.continuation const continuation = req.query.continuation
? `&continuation=${req.query.continuation}` ? `&continuation=${req.query.continuation}`
: ""; : "";
@ -301,13 +293,11 @@ module.exports = function (app, config, renderTemplate) {
var { tj, shorts, stream, c, boutJson } = cache[ID].result; var { tj, shorts, stream, c, boutJson } = cache[ID].result;
} }
const subscribers = boutJson.Channel?.Metadata.Subscribers; //TOBEREMOVED
const about = boutJson?.Channel?.Contents?.ItemSection?.About; const subscribers = ""
const description = about?.Description.toString().replace( const about = ""
/\n/g, const description = ""
" <br> " const dnoreplace = ""
);
const dnoreplace = about?.Description.toString();