Updated csv reading as per feedback and ran

Signed-off-by: thtmnisamnstr <gavinj1984@gmail.com>
This commit is contained in:
thtmnisamnstr 2023-04-03 17:07:58 -07:00
parent 3341929060
commit fffdaa1410

View File

@ -51,8 +51,8 @@ struct Invidious::User
Invidious::Database::Playlists.update_description(playlist.id, description)
# Add each video to the playlist from the body content
CSV.each_row(raw_body) do |row|
if row.size >= 1
csv_body = CSV.new(raw_body, headers: true)
csv_body.each do |row|
video_id = row[0]
if playlist
next if !video_id
@ -80,7 +80,6 @@ struct Invidious::User
Invidious::Database::Playlists.update_video_added(playlist.id, playlist_video.index)
end
end
end
return playlist
end