Fix #1382 : Playlists missing first video

The index was set to index - 1, causing the first video to be shifted in fetch_playlist_videos
(because of its index being -1 lower than it should) and thus not displayed on playlist page.
This commit is contained in:
Gauthier POGAM--LE MONTAGNER 2020-09-25 14:26:07 +02:00
parent 9995a8d53f
commit 1595eaeb74

View File

@ -483,7 +483,7 @@ def extract_playlist_videos(initial_data : Hash(String, JSON::Any))
published: Time.utc,
plid: plid,
live_now: live,
index: index - 1,
index: index,
})
end
end