diff --git a/src/Twitch.elm b/src/Twitch.elm index 0d60b16..25d4f6b 100644 --- a/src/Twitch.elm +++ b/src/Twitch.elm @@ -64,7 +64,7 @@ get { url, resolver } = playlistMiniatureUrl : Playlist -> String playlistMiniatureUrl playlist = - case List.head playlist.videos of + case List.head (List.reverse playlist.videos) of Just v -> "videos/" ++ playlist.url ++ v ++ "miniature-050.png"