Software /
code /
prosody-modules
Diff
mod_rest/jsonmap.lib.lua @ 4372:78de3c7acf58
mod_rest: Fix json-mapping stanzas with text or whitespace between tags
Test:
jsonmap.st2json( st.message({}, "hi"):indent() )
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 22 Jan 2021 15:19:53 +0100 |
parent | 4309:e8b9228b5265 |
child | 4473:3b50a9a75fb6 |
line wrap: on
line diff
--- a/mod_rest/jsonmap.lib.lua Thu Jan 21 18:54:42 2021 +0000 +++ b/mod_rest/jsonmap.lib.lua Fri Jan 22 15:19:53 2021 +0100 @@ -486,7 +486,7 @@ return t; end - for tag in s:children() do + for _, tag in ipairs(s.tags) do local prefix = "{" .. (tag.attr.xmlns or "jabber:client") .. "}"; local mapping = byxmlname[prefix .. tag.name]; if not mapping then