Escape quotes in metadata description

This commit is contained in:
Omar Roth 2018-07-23 09:16:33 -05:00
parent bb20ec110e
commit 0bb1da6bfd
1 changed files with 1 additions and 1 deletions

View File

@ -401,7 +401,7 @@ get "/watch" do |env|
description = video.description.gsub("<br>", " ")
description = description.gsub("<br/>", " ")
description = XML.parse_html(description).content[0..200].gsub("\n", " ").strip(" ")
description = XML.parse_html(description).content[0..200].gsub('"', "&quot;").gsub("\n", " ").strip(" ")
if description.empty?
description = " "
end