mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.datamapper: Don't include empty unwrapped arrays
Since there is no way to distinguish an empty such array from a zero-length array. Dropping it seems like the least annoying thing to do.
This commit is contained in:
parent
d68de27a5d
commit
4720eea24f
2 changed files with 8 additions and 2 deletions
|
@ -168,7 +168,10 @@ function parse_object (schema : schema_t, s : st.stanza_t) : { string : any }
|
|||
out[prop] = parse_object(propschema, c);
|
||||
end
|
||||
elseif proptype == "array" then
|
||||
out[prop] = parse_array(propschema, s);
|
||||
local a = parse_array(propschema, s);
|
||||
if a and a[1] ~= nil then
|
||||
out[prop] = a;
|
||||
end
|
||||
else
|
||||
error "unreachable"
|
||||
end
|
||||
|
|
|
@ -138,7 +138,10 @@ function parse_object(schema, s)
|
|||
out[prop] = parse_object(propschema, c);
|
||||
end
|
||||
elseif proptype == "array" then
|
||||
out[prop] = parse_array(propschema, s);
|
||||
local a = parse_array(propschema, s);
|
||||
if a and a[1] ~= nil then
|
||||
out[prop] = a;
|
||||
end
|
||||
else
|
||||
error("unreachable")
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue