Add fix to top_videos for empty database

このコミットが含まれているのは:
Omar Roth 2018-02-15 11:55:44 -06:00
コミット 8956623347
1個のファイルの変更7行の追加3行の削除

ファイルの表示

@ -118,9 +118,13 @@ spawn do
client = get_client(pool)
args = [] of String
(1..top.size).each { |i| args << "($#{i})," }
args = args.join("")
args = args.chomp(",")
if top.size > 0
(1..top.size).each { |i| args << "($#{i})," }
args = args.join("")
args = args.chomp(",")
else
next
end
videos = [] of Video