diff options
author | Kim Alvefur <zash@zash.se> | 2017-09-14 01:27:36 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-09-14 01:27:36 +0200 |
commit | f36218aed8ff4ee2694f5b9dc3c0a4943d9ca006 (patch) | |
tree | a9b92a43a132af45694c9650f643c0b0ef2ae332 /plugins/mod_s2s | |
parent | 0e30886cd8b71e8a2abc18531b3fb02d85b60805 (diff) | |
download | prosody-f36218aed8ff4ee2694f5b9dc3c0a4943d9ca006.tar.gz prosody-f36218aed8ff4ee2694f5b9dc3c0a4943d9ca006.zip |
mod_component, mod_s2s: Iterate over child tags instead of child nodes (can include text) in stream error (same as 176b7f4e4ac9)
Diffstat (limited to 'plugins/mod_s2s')
-rw-r--r-- | plugins/mod_s2s/mod_s2s.lua | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua index e038e5b4..10b81a17 100644 --- a/plugins/mod_s2s/mod_s2s.lua +++ b/plugins/mod_s2s/mod_s2s.lua @@ -416,16 +416,14 @@ function stream_callbacks.error(session, error, data) session:close("not-well-formed"); elseif error == "stream-error" then local condition, text = "undefined-condition"; - for child in data:children() do - if child.attr.xmlns == xmlns_xmpp_streams then - if child.name ~= "text" then - condition = child.name; - else - text = child:get_text(); - end - if condition ~= "undefined-condition" and text then - break; - end + for child in data:childtags(nil, xmlns_xmpp_streams) do + if child.name ~= "text" then + condition = child.name; + else + text = child:get_text(); + end + if condition ~= "undefined-condition" and text then + break; end end text = condition .. (text and (" ("..text..")") or ""); |