Add fix for videos without 'rvs'

This commit is contained in:
Omar Roth 2018-08-13 10:50:09 -05:00
parent f3fde38137
commit 16fb5023e0
2 changed files with 5 additions and 9 deletions

View file

@ -24,10 +24,8 @@ def crawl_videos(db)
end
rvs = [] of Hash(String, String)
if video.info.has_key?("rvs")
video.info["rvs"].split(",").each do |rv|
rvs << HTTP::Params.parse(rv).to_h
end
video.info["rvs"]?.try &.split(",").each do |rv|
rvs << HTTP::Params.parse(rv).to_h
end
rvs.each do |rv|