mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 07:22:16 +05:30
Fix comment "pings" (#3038)
This commit is contained in:
parent
21bd4edee4
commit
3702e8c6fe
@ -602,9 +602,15 @@ def content_to_comment_html(content)
|
||||
text = %(<a href="/watch?v=#{video_id}">#{"youtube.com/watch?v=#{video_id}"}</a>)
|
||||
end
|
||||
elsif url = run.dig?("navigationEndpoint", "commandMetadata", "webCommandMetadata", "url").try &.as_s
|
||||
if text.starts_with?(/\s?@/)
|
||||
# Handle "pings" in comments differently
|
||||
# See: https://github.com/iv-org/invidious/issues/3038
|
||||
text = %(<a href="#{url}">#{text}</a>)
|
||||
else
|
||||
text = %(<a href="#{url}">#{reduce_uri(url)}</a>)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
text
|
||||
end.join("").delete('\ufeff')
|
||||
|
Loading…
Reference in New Issue
Block a user