diff -r 8d13b9c9ba75 -r 8dbca6a93988 mod_rest/jsonmap.lib.lua --- a/mod_rest/jsonmap.lib.lua Sat Jan 25 00:20:00 2020 +0100 +++ b/mod_rest/jsonmap.lib.lua Sat Jan 25 00:29:34 2020 +0100 @@ -87,7 +87,7 @@ local disco = st.stanza("query", { xmlns = "http://jabber.org/protocol/disco#items" }); if type(s) == "table" then for _, item in ipairs(s) do - disco:tag("item", item); + disco:tag("item", { jid = item.jid, node = item.node, name = item.name }); end end return disco;