mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-03-16.git
synced 2024-08-15 00:53:18 +00:00
Add extra handling for year format
This commit is contained in:
parent
9d6cdc3032
commit
5a6b36ecce
2 changed files with 14 additions and 5 deletions
|
@ -63,7 +63,12 @@ def decode_time(string)
|
|||
end
|
||||
|
||||
def decode_date(string : String)
|
||||
# Time matches format "20 hours ago", "40 minutes ago"...
|
||||
# String matches 'YYYY'
|
||||
if string.match(/\d{4}/)
|
||||
return Time.new(string.to_i, 1, 1)
|
||||
end
|
||||
|
||||
# String matches format "20 hours ago", "40 minutes ago"...
|
||||
date = string.split(" ")[-3, 3]
|
||||
delta = date[0].to_i
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue