Merge pull request #1797 from B0pol/published_utc
Use UTC for published date
This commit is contained in:
commit
705e4fca06
1 changed files with 1 additions and 1 deletions
|
@ -517,7 +517,7 @@ struct Video
|
|||
end
|
||||
|
||||
def published : Time
|
||||
info["microformat"]?.try &.["playerMicroformatRenderer"]?.try &.["publishDate"]?.try { |t| Time.parse(t.as_s, "%Y-%m-%d", Time::Location.local) } || Time.local
|
||||
info["microformat"]?.try &.["playerMicroformatRenderer"]?.try &.["publishDate"]?.try { |t| Time.parse(t.as_s, "%Y-%m-%d", Time::Location::UTC) } || Time.utc
|
||||
end
|
||||
|
||||
def published=(other : Time)
|
||||
|
|
Loading…
Reference in a new issue