mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-04-11.git
synced 2024-08-15 00:43:26 +00:00
commit
3e0096f360
1 changed files with 3 additions and 1 deletions
|
@ -573,7 +573,9 @@ def content_to_comment_html(content)
|
||||||
url = "/watch?v=#{url.request_target.lstrip('/')}"
|
url = "/watch?v=#{url.request_target.lstrip('/')}"
|
||||||
elsif url.host.nil? || url.host.not_nil!.ends_with?("youtube.com")
|
elsif url.host.nil? || url.host.not_nil!.ends_with?("youtube.com")
|
||||||
if url.path == "/redirect"
|
if url.path == "/redirect"
|
||||||
url = HTTP::Params.parse(url.query.not_nil!)["q"]
|
# Sometimes, links can be corrupted (why?) so make sure to fallback
|
||||||
|
# nicely. See https://github.com/iv-org/invidious/issues/2682
|
||||||
|
url = HTTP::Params.parse(url.query.not_nil!)["q"]? || ""
|
||||||
else
|
else
|
||||||
url = url.request_target
|
url = url.request_target
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue