diff --git a/src/invidious/helpers/helpers.cr b/src/invidious/helpers/helpers.cr index 2af65e74..fccffd18 100644 --- a/src/invidious/helpers/helpers.cr +++ b/src/invidious/helpers/helpers.cr @@ -184,7 +184,12 @@ def html_to_content(description_html) description_html = description_html.to_s description = description_html.gsub("
", "\n") description = description.gsub("
", "\n") - description = XML.parse_html(description).content.strip("\n ") + + if description.empty? + description = "" + else + description = XML.parse_html(description).content.strip("\n ") + end end return description_html, description