Fix refresh time

This commit is contained in:
Omar Roth 2018-03-29 19:21:44 -05:00
parent 60360ee2ae
commit 4a7fc4ea69
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ def get_video(id, client, db, refresh = true)
video = db.query_one("SELECT * FROM videos WHERE id = $1", id, as: Video)
# If record was last updated over an hour ago, refresh (expire param in response lasts for 6 hours)
if refresh && Time.now - video.updated > 1.second
if refresh && Time.now - video.updated > 1.hour
begin
video = fetch_video(id, client)
video_array = video.to_a