From ad37db4c820064d08e72014af339c7d789067937 Mon Sep 17 00:00:00 2001 From: DoodlesEpic Date: Tue, 24 May 2022 20:34:36 -0300 Subject: [PATCH] Fix document is empty error on yt kids video when reddit comments are enabled --- src/invidious/comments.cr | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/invidious/comments.cr b/src/invidious/comments.cr index d84969784..1aa149359 100644 --- a/src/invidious/comments.cr +++ b/src/invidious/comments.cr @@ -500,6 +500,12 @@ def template_reddit_comments(root, locale) end def replace_links(html) + # Check if the document is empty + # Prevents edge-case bug with Reddit comments, see issue #3115 + if html.nil? || html.empty? + return html + end + html = XML.parse_html(html) html.xpath_nodes(%q(//a)).each do |anchor| @@ -541,6 +547,12 @@ def replace_links(html) end def fill_links(html, scheme, host) + # Check if the document is empty + # Prevents edge-case bug with Reddit comments, see issue #3115 + if html.nil? || html.empty? + return html + end + html = XML.parse_html(html) html.xpath_nodes("//a").each do |match|