This commit is contained in:
Coder12a
2018-11-26 22:48:19 -06:00
parent 1f915850d9
commit b9a64f723c
2 changed files with 7 additions and 10 deletions

View File

@ -385,7 +385,7 @@ local function iterate(db,func_on_iterate,end_func,count,cs,args)
local line = fl:read("*l")
if args.do_not_skip_removed_items or not db.indexes_pool[cs].deleted_items[line] then
local ar = func_on_iterate(line,i,args)
if ar then
if ar ~= nil then
args = ar
return args
end