summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/invidious/search.cr2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/invidious/search.cr b/src/invidious/search.cr
index ca3ae4d7..7b14454b 100644
--- a/src/invidious/search.cr
+++ b/src/invidious/search.cr
@@ -25,7 +25,7 @@ struct SearchVideo
xml.element("img", src: "#{host_url}/vi/#{self.id}/mqdefault.jpg")
end
- xml.element("p", style: "white-space:pre-wrap") { xml.text html_to_content(self.description_html) }
+ xml.element("p", style: "word-break:break-word;white-space:pre-wrap") { xml.text html_to_content(self.description_html) }
end
end