mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +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);
|
out[prop] = parse_object(propschema, c);
|
||||||
end
|
end
|
||||||
elseif proptype == "array" then
|
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
|
else
|
||||||
error "unreachable"
|
error "unreachable"
|
||||||
end
|
end
|
||||||
|
|
|
@ -138,7 +138,10 @@ function parse_object(schema, s)
|
||||||
out[prop] = parse_object(propschema, c);
|
out[prop] = parse_object(propschema, c);
|
||||||
end
|
end
|
||||||
elseif proptype == "array" then
|
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
|
else
|
||||||
error("unreachable")
|
error("unreachable")
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue