mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
util.dataforms: Return nil for empty list-mutli responses, to be consistent with other readers
This commit is contained in:
parent
7507b21e6a
commit
17bc3cc408
1 changed files with 5 additions and 1 deletions
|
@ -187,7 +187,11 @@ field_readers["list-multi"] =
|
|||
for value in field_tag:childtags("value") do
|
||||
result[#result+1] = value:get_text();
|
||||
end
|
||||
return result, (required and #result == 0 and "Required value missing" or nil);
|
||||
if #result > 0 then
|
||||
return result;
|
||||
elseif required then
|
||||
return nil, "Required value missing";
|
||||
end
|
||||
end
|
||||
|
||||
field_readers["text-multi"] =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue