forked from midou/invidious
Don't redirect youtube links
This commit is contained in:
parent
c42c0b65b0
commit
aa0864f87d
@ -287,19 +287,6 @@ def template_comments(root)
|
|||||||
author = child["data"]["author"]
|
author = child["data"]["author"]
|
||||||
score = child["data"]["score"]
|
score = child["data"]["score"]
|
||||||
body_html = HTML.unescape(child["data"]["body_html"].as_s)
|
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 = ""
|
replies_html = ""
|
||||||
if child["data"]["replies"] != ""
|
if child["data"]["replies"] != ""
|
||||||
|
Loading…
Reference in New Issue
Block a user