mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-02 17:03:25 +05:30
Fix length seconds for videos with longer duration
This commit is contained in:
parent
7cd66e20d0
commit
bdfe170c3b
@ -64,8 +64,8 @@ def recode_length_seconds(time)
|
|||||||
time = time.seconds
|
time = time.seconds
|
||||||
text = "#{time.minutes.to_s.rjust(2, '0')}:#{time.seconds.to_s.rjust(2, '0')}"
|
text = "#{time.minutes.to_s.rjust(2, '0')}:#{time.seconds.to_s.rjust(2, '0')}"
|
||||||
|
|
||||||
if time.hours > 0
|
if time.total_hours.to_i > 0
|
||||||
text = "#{time.hours.to_s.rjust(2, '0')}:#{text}"
|
text = "#{time.total_hours.to_i.to_s.rjust(2, '0')}:#{text}"
|
||||||
end
|
end
|
||||||
|
|
||||||
text = text.lchop('0')
|
text = text.lchop('0')
|
||||||
|
Loading…
Reference in New Issue
Block a user