Remove useless call

Follow this comment :
https://github.com/iv-org/invidious/pull/2936#discussion_r841277735
This commit is contained in:
Féry Mathieu (Mathius) 2022-04-03 23:26:34 +02:00
parent 19805b91d9
commit 68ac18dc98
No known key found for this signature in database
GPG Key ID: F9CCC80C18A59037
1 changed files with 1 additions and 1 deletions

View File

@ -599,7 +599,7 @@ def content_to_comment_html(content)
if length_seconds && length_seconds.as_i > 0
text = %(<a href="javascript:void(0)" data-onclick="jump_to_time" data-jump-time="#{length_seconds}">#{text}</a>)
else
text = %(<a href="/watch?v=#{video_id}">#{reduce_uri("youtube.com/watch?v=#{video_id}")}</a>)
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
text = %(<a href="#{url}">#{reduce_uri(url)}</a>)