Fix iterator nil deref

This commit is contained in:
Gabriel Tofvesson 2024-10-09 06:22:39 +02:00
parent f06a979536
commit fe5f08f62f

View File

@ -8,7 +8,7 @@ function Children:with(elementType)
function elementType:_iterateChildren(opts)
local func, tbl, start = ipairs(propSelf:getState(self))
return function(t, i)
if i == opts.to then
if i == (opts and opts.to) then
return nil, nil
end
return func(t, i)