Don't try to return an element from an empty set

pull/2353/head
Bastien Dejean 8 years ago
parent b3d58fba00
commit fe738ef101

@ -57,6 +57,9 @@ local function getRandomImage(dir)
end
end
end
if i == 0 then
return nil
end
return createWidgetFromFile(dir .. pics[math.random(i)])
end

Loading…
Cancel
Save