Run 'crystal tool format'

This commit is contained in:
Omar Roth 2018-02-05 17:57:03 -06:00
parent a9cea62d5b
commit 25434c676c

View file

@ -119,19 +119,19 @@ def fetch_video(id, client)
published = published.lchop("Started streaming ") published = published.lchop("Started streaming ")
published = published.lchop("on ") published = published.lchop("on ")
published = published.lchop("Scheduled for ") published = published.lchop("Scheduled for ")
if !published.includes?("ago") if !published.includes?("ago")
published = Time.parse(published, "%b %-d, %Y") published = Time.parse(published, "%b %-d, %Y")
else else
# Time matches format "20 hours ago", "40 minutes ago"... # Time matches format "20 hours ago", "40 minutes ago"...
delta = published.split(" ")[0].to_i delta = published.split(" ")[0].to_i
case published case published
when .includes? "minute" when .includes? "minute"
published = Time.now - delta.minutes published = Time.now - delta.minutes
when .includes? "hour" when .includes? "hour"
published = Time.now - delta.hours published = Time.now - delta.hours
else else
raise "Could not parse #{published}" raise "Could not parse #{published}"
end end
end end
video = Video.new(id, info, html, Time.now, title, views, likes, dislikes, wilson_score, published) video = Video.new(id, info, html, Time.now, title, views, likes, dislikes, wilson_score, published)