From 4ab97ef63dad62d2d339b3c83d33fdfc99fb09c3 Mon Sep 17 00:00:00 2001 From: Ashley Date: Sun, 6 Nov 2022 16:14:03 +0100 Subject: [PATCH] fix api --- server.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server.js b/server.js index 37edfaa..dad5896 100644 --- a/server.js +++ b/server.js @@ -393,7 +393,7 @@ app.get("/channel/", async (req, res) => { //videos const channel = await modules.fetch( - config.tubeApi + `channel?id=${ID}&tab=videos&Continuation=${continuation}` + config.tubeApi + `channel?id=${ID}&tab=shorts&Continuation=${continuation}` ); const c = await channel.text(); const tj = JSON.parse(modules.toJson(c));