Fix playlist export for playlists with more than 100 videos

This commit is contained in:
Omar Roth 2020-07-28 17:21:39 -04:00
parent b508787037
commit 62f015fc34
No known key found for this signature in database
GPG Key ID: B8254FB7EC3D37F2

View File

@ -2449,8 +2449,8 @@ get "/subscription_manager" do |env|
json.field "privacy", playlist.privacy.to_s
json.field "videos" do
json.array do
get_playlist_videos(PG_DB, playlist, offset: 0, locale: locale, continuation: nil).each_with_index do |video, index|
json.string video.id
PG_DB.query_all("SELECT id FROM playlist_videos WHERE plid = $1 ORDER BY array_position($2, index) LIMIT 500", playlist.id, playlist.index, as: String).each do |video_id|
json.string video_id
end
end
end
@ -2563,7 +2563,9 @@ post "/data_control" do |env|
playlist = create_playlist(PG_DB, title, privacy, user)
PG_DB.exec("UPDATE playlists SET description = $1 WHERE id = $2", description, playlist.id)
videos = item["videos"]?.try &.as_a?.try &.each do |video_id|
videos = item["videos"]?.try &.as_a?.try &.each_with_index do |video_id, idx|
raise "Playlist cannot have more than 500 videos" if idx > 500
video_id = video_id.try &.as_s?
next if !video_id