Support '18m12s' format in video description timestamp

This commit is contained in:
Omar Roth 2018-08-06 23:00:39 -05:00
parent 8b572d268d
commit e190624eb0
1 changed files with 6 additions and 1 deletions

View File

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