This commit is contained in:
Samantaz Fox 2022-05-18 23:36:50 +02:00
parent ca27e096f3
commit 137534f901
No known key found for this signature in database
GPG Key ID: F42821059186176E

View File

@ -567,6 +567,10 @@ end
def content_to_comment_html(content, video_id : String? = "")
html_array = content.map do |run|
# Sometimes, there is an empty element.
# See: https://github.com/iv-org/invidious/issues/3096
next if run.as_h.empty?
text = HTML.escape(run["text"].as_s)
if run["navigationEndpoint"]?