210 actually

This commit is contained in:
unknown 2023-03-24 19:27:35 +01:00
parent 2506e20125
commit 64c9cac254
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ async function getChannelVideos(id) {
const page = await (await fetch(`${instance}/nextpage/channel/${id}?nextpage=${encodeURIComponent(payload)}`)).json()
videos.push(...page.relatedStreams)
if (videos.length >= 150) resolve(videos)
if (videos.length >= 210) resolve(videos)
if (page.nextpage) await getNextPage(page.nextpage)
else resolve(videos)
}