mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 15:32:23 +05:30
Fix typo causing links to be youtube.com/redirect
This commit is contained in:
parent
8b62c05fe2
commit
fd6f03655e
@ -554,7 +554,7 @@ def content_to_comment_html(content)
|
||||
|
||||
if url.host == "youtu.be"
|
||||
url = "/watch?v=#{url.request_target.lstrip('/')}"
|
||||
elsif !url.host || {"m.youtube.com", "www.youtube.com"}.includes? url
|
||||
elsif !url.host || {"m.youtube.com", "www.youtube.com"}.includes? url.host
|
||||
if url.path == "/redirect"
|
||||
url = HTTP::Params.parse(url.query.not_nil!)["q"]
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user