From aa0864f87d74b562384205df2264b5449fdb38cc Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Sun, 4 Mar 2018 07:48:59 -0600 Subject: [PATCH] Don't redirect youtube links --- src/helpers.cr | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/src/helpers.cr b/src/helpers.cr index 9b79c27e..1492e7cc 100644 --- a/src/helpers.cr +++ b/src/helpers.cr @@ -287,19 +287,6 @@ def template_comments(root) author = child["data"]["author"] score = child["data"]["score"] body_html = HTML.unescape(child["data"]["body_html"].as_s) - body_html = XML.parse_html(body_html) - - body_html.xpath_nodes(%q(//a/@href)).each do |match| - uri = URI.parse(match.content) - - if uri.host =~ /(www\.)?youtube.com/ && uri.path == "/watch" - uri = uri.full_path - end - - match.content = uri.to_s - end - - body_html = body_html.to_s replies_html = "" if child["data"]["replies"] != ""