Use generic url for thumbnails

This commit is contained in:
Omar Roth 2018-04-05 20:54:56 -05:00
parent 841308929d
commit 69dd52bac3
3 changed files with 3 additions and 3 deletions

View file

@ -312,7 +312,7 @@ get "/watch" do |env|
video.description = fill_links(video.description, "https", "www.youtube.com")
video.description = add_alt_links(video.description)
thumbnail = "https://i1.ytimg.com/vi/#{id}/mqdefault.jpg"
thumbnail = "https://i.ytimg.com/vi/#{id}/mqdefault.jpg"
templated "watch"
end