Add metadata fix for videos with empty description

This commit is contained in:
Omar Roth 2018-07-23 09:03:37 -05:00
parent 69e70124b4
commit bb20ec110e
1 changed files with 3 additions and 0 deletions

View File

@ -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"