Safely ignore nil values in list fields

This commit is contained in:
Jason Perkins 2014-06-16 10:13:00 -04:00
parent 70b66f2b31
commit 019ba5dcfc

View File

@ -632,7 +632,7 @@
elseif not table.isempty(value) then elseif not table.isempty(value) then
store(value) store(value)
end end
else elseif value then
store(value) store(value)
end end