mirror of
https://github.com/iv-org/invidious.git
synced 2025-08-14 16:48:29 +00:00
Handle url.host correctly
This commit is contained in:
parent
a97e2cbe27
commit
2e6e1e6623
@ -552,10 +552,9 @@ def content_to_comment_html(content)
|
|||||||
if url = run["navigationEndpoint"]["urlEndpoint"]?.try &.["url"].as_s
|
if url = run["navigationEndpoint"]["urlEndpoint"]?.try &.["url"].as_s
|
||||||
url = URI.parse(url)
|
url = URI.parse(url)
|
||||||
|
|
||||||
if !url.host
|
if url.host == "youtu.be"
|
||||||
elsif url.host == "youtu.be"
|
|
||||||
url = "/watch?v=#{url.request_target.lstrip('/')}"
|
url = "/watch?v=#{url.request_target.lstrip('/')}"
|
||||||
elsif {"m.youtube.com", "www.youtube.com"}.includes? url
|
elsif !url.host || {"m.youtube.com", "www.youtube.com"}.includes? url
|
||||||
if url.path == "/redirect"
|
if url.path == "/redirect"
|
||||||
url = HTTP::Params.parse(url.query.not_nil!)["q"]
|
url = HTTP::Params.parse(url.query.not_nil!)["q"]
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user