Fix typo causing links to be youtube.com/redirect

This commit is contained in:
syeopite 2021-09-03 03:30:36 -07:00
parent 8b62c05fe2
commit fd6f03655e
No known key found for this signature in database
GPG Key ID: 6FA616E5A5294A82

View File

@ -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