From 684a144ec94289048d5d9ed9247922b43abf84b0 Mon Sep 17 00:00:00 2001 From: Ashley Date: Fri, 9 Dec 2022 17:13:14 +0000 Subject: [PATCH] fix channels!!!!!! --- .../init/pages-channel-and-download.js | 24 +++++++++++++------ 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/src/libpoketube/init/pages-channel-and-download.js b/src/libpoketube/init/pages-channel-and-download.js index 0e08adac..6364e0c7 100644 --- a/src/libpoketube/init/pages-channel-and-download.js +++ b/src/libpoketube/init/pages-channel-and-download.js @@ -18,7 +18,16 @@ const { getRandomArbitrary, } = require("../ptutils/libpt-coreutils.js"); -const sha384 = modules.hash; +const sha384 = modules.hash + +function getJson(str) { + try { + return JSON.parse(str); + } catch { + return null; + } +} + module.exports = function (app, config, renderTemplate) { app.get("/download", async function (req, res) { @@ -123,12 +132,12 @@ module.exports = function (app, config, renderTemplate) { } //videos - const channel = await modules.fetch( - config.tubeApi + - `channel?id=${ID}&tab=shorts&Continuation=${continuation}` - ); - const c = await channel.text(); - const tj = JSON.parse(modules.toJson(c)); + const a = await modules.fetch(`${config.invapi}/channels/videos/${ID}/`).then((res) => + res.text() + ); + + var tj = await getJson(a); + const summary = await wiki.summary(k.Channel.Metadata.Name); @@ -158,6 +167,7 @@ module.exports = function (app, config, renderTemplate) { tab: tab, j: k, tj: tj, + turntomins, dnoreplace: dnoreplace, continuation: continuation, wiki: w,