util.dataforms: Ensure fields have names when collecting data (fixes traceback, thanks Martin)

This commit is contained in:
Kim Alvefur 2018-07-15 22:50:05 +02:00
parent 0913989a69
commit 9917c35bb6

View file

@ -155,7 +155,7 @@ function form_t.data(layout, stanza)
if field.required then
errors[field.name] = "Required value missing";
end
else
elseif field.name then
present[field.name] = true;
local reader = field_readers[field.type];
if reader then