util.datamapper: Fix to skip parsing wrapped arrays that aren't there

Turns out the unreachable error is reachable :D
This commit is contained in:
Kim Alvefur 2021-03-22 10:03:32 +01:00
parent 110e82bd93
commit f68d29bafd
2 changed files with 0 additions and 4 deletions

View file

@ -175,8 +175,6 @@ function parse_object (schema : schema_t, s : st.stanza_t) : { string : any }
local wrapper = s:get_child(name, namespace);
if wrapper then
out[prop] = parse_array(propschema, wrapper);
else
error "unreachable"
end
else
local value : string = extract_value (s, value_where, proptype, name, namespace, prefix, single_attribute, enums)

View file

@ -143,8 +143,6 @@ function parse_object(schema, s)
local wrapper = s:get_child(name, namespace);
if wrapper then
out[prop] = parse_array(propschema, wrapper);
else
error("unreachable")
end
else
local value = extract_value(s, value_where, proptype, name, namespace, prefix, single_attribute, enums)