From 1931afd8df9d9a0e443b8006374ae3bd83e5920c 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 37edfaad..dad58964 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));