Add metadata fix for videos with empty description

pull/38/head
Omar Roth 6 years ago
parent 69e70124b4
commit bb20ec110e

@ -402,6 +402,9 @@ get "/watch" do |env|
description = video.description.gsub("<br>", " ")
description = description.gsub("<br/>", " ")
description = XML.parse_html(description).content[0..200].gsub("\n", " ").strip(" ")
if description.empty?
description = " "
end
thumbnail = "https://i.ytimg.com/vi/#{id}/mqdefault.jpg"

Loading…
Cancel
Save