Properly transform youtu.be links to be /watch routes in comments and descriptions (#2365)

This commit is contained in:
syeopite 2021-09-01 10:59:47 +00:00 committed by GitHub
parent f938aa530e
commit a1001ada47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -552,7 +552,9 @@ def content_to_comment_html(content)
if url = run["navigationEndpoint"]["urlEndpoint"]?.try &.["url"].as_s
url = URI.parse(url)
if !url.host || {"m.youtube.com", "www.youtube.com", "youtu.be"}.includes? url.host
if url.host == "youtu.be"
url = "/watch?v=#{url.request_target.lstrip('/')}"
elsif !url.host || {"m.youtube.com", "www.youtube.com"}.includes? url
if url.path == "/redirect"
url = HTTP::Params.parse(url.query.not_nil!)["q"]
else