From bdfe170c3b8721c5afe5f7e1fc7abe14308dd98a Mon Sep 17 00:00:00 2001 From: Omar Roth Date: Sat, 11 May 2019 10:57:58 -0500 Subject: [PATCH] Fix length seconds for videos with longer duration --- src/invidious/helpers/utils.cr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/invidious/helpers/utils.cr b/src/invidious/helpers/utils.cr index c1aea5b24..9bdb6a7e5 100644 --- a/src/invidious/helpers/utils.cr +++ b/src/invidious/helpers/utils.cr @@ -64,8 +64,8 @@ def recode_length_seconds(time) time = time.seconds text = "#{time.minutes.to_s.rjust(2, '0')}:#{time.seconds.to_s.rjust(2, '0')}" - if time.hours > 0 - text = "#{time.hours.to_s.rjust(2, '0')}:#{text}" + if time.total_hours.to_i > 0 + text = "#{time.total_hours.to_i.to_s.rjust(2, '0')}:#{text}" end text = text.lchop('0')