mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-02 00:43:05 +05:30
Fix minute matching in decode_time
This commit is contained in:
parent
18f8a4ae1a
commit
44016a6779
@ -819,7 +819,7 @@ def decode_time(string)
|
|||||||
hours = /(?<hours>\d+)h/.match(string).try &.["hours"].try &.to_i
|
hours = /(?<hours>\d+)h/.match(string).try &.["hours"].try &.to_i
|
||||||
hours ||= 0
|
hours ||= 0
|
||||||
|
|
||||||
minutes = /(?<minutes>\d+)m/.match(string).try &.["minutes"].try &.to_i
|
minutes = /(?<minutes>\d+)m(?!s)/.match(string).try &.["minutes"].try &.to_i
|
||||||
minutes ||= 0
|
minutes ||= 0
|
||||||
|
|
||||||
seconds = /(?<seconds>\d+)s/.match(string).try &.["seconds"].try &.to_i
|
seconds = /(?<seconds>\d+)s/.match(string).try &.["seconds"].try &.to_i
|
||||||
|
Loading…
Reference in New Issue
Block a user