Support '18m12s' format in video description timestamp

pull/100/head
Omar Roth 2018-08-06 23:00:39 -05:00
rodzic 8b572d268d
commit e190624eb0
1 zmienionych plików z 6 dodań i 1 usunięć

Wyświetl plik

@ -203,7 +203,12 @@ def add_alt_links(html)
</a>
END_HTML
elsif url.to_s == "#"
length_seconds = decode_length_seconds(anchor.content)
begin
length_seconds = decode_length_seconds(anchor.content)
rescue ex
length_seconds = decode_time(anchor.content)
end
alt_anchor = <<-END_HTML
<a href="javascript:void(0)" onclick="player.currentTime(#{length_seconds})">#{anchor.content}</a>
END_HTML