increase the max videos in a playlist

This commit is contained in:
diogo 2021-07-19 12:09:48 +03:00 committed by Samantaz Fox
parent 84124b837d
commit dccdf38ce7
No known key found for this signature in database
GPG Key ID: F42821059186176E

View File

@ -445,7 +445,7 @@ def get_playlist_videos(db, playlist, offset, locale = nil, continuation = nil)
videos = [] of PlaylistVideo
until videos.size >= 100 || videos.size == playlist.video_count || offset >= playlist.video_count
until videos.size >= 200 || videos.size == playlist.video_count || offset >= playlist.video_count
# 100 videos per request
ctoken = produce_playlist_continuation(playlist.id, offset)
initial_data = request_youtube_api_browse(ctoken)