Fix iterator nil deref
This commit is contained in:
parent
f06a979536
commit
fe5f08f62f
@ -8,7 +8,7 @@ function Children:with(elementType)
|
|||||||
function elementType:_iterateChildren(opts)
|
function elementType:_iterateChildren(opts)
|
||||||
local func, tbl, start = ipairs(propSelf:getState(self))
|
local func, tbl, start = ipairs(propSelf:getState(self))
|
||||||
return function(t, i)
|
return function(t, i)
|
||||||
if i == opts.to then
|
if i == (opts and opts.to) then
|
||||||
return nil, nil
|
return nil, nil
|
||||||
end
|
end
|
||||||
return func(t, i)
|
return func(t, i)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user