aboutsummaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2021-03-19 19:07:25 +0100
committerKim Alvefur <zash@zash.se>2021-03-19 19:07:25 +0100
commita51587da480c7521b020e8de3834b61a0e7e2928 (patch)
tree7d8b05a0b38eaf1f2e28b6971b4bf59f879bd454 /util
parentf6de136dc4673d2977dbda10bba048a3012a004d (diff)
downloadprosody-a51587da480c7521b020e8de3834b61a0e7e2928.tar.gz
prosody-a51587da480c7521b020e8de3834b61a0e7e2928.zip
util.datamapper: Only get element name if there's an element
Fixes error due to attempting to index a nil value
Diffstat (limited to 'util')
-rw-r--r--util/datamapper.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/util/datamapper.lua b/util/datamapper.lua
index a0c11166..cb008695 100644
--- a/util/datamapper.lua
+++ b/util/datamapper.lua
@@ -105,7 +105,9 @@ function parse_object(schema, s)
else
c = s:get_child(nil, namespace);
end
- value = c.name;
+ if type(c) == "table" then
+ value = c.name;
+ end
elseif value_where == "in_attribute" then
local attr = name
if prefix then