mod_rest/jsonmap.lib.lua
changeset 3855 8dbca6a93988
parent 3854 8d13b9c9ba75
child 3856 66f96b98d219
--- 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;