Software /
code /
prosody-modules
Changeset
3851:8dbca6a93988
mod_rest: Only pass trough valid disco#item item attributes
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 25 Jan 2020 00:29:34 +0100 |
parents | 3850:8d13b9c9ba75 |
children | 3852:66f96b98d219 |
files | mod_rest/jsonmap.lib.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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;