diff options
author | Waqas Hussain <waqas20@gmail.com> | 2012-08-09 07:17:25 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2012-08-09 07:17:25 +0500 |
commit | 62c6400a8c96d350fd6a6f5f596f6601b59bab0d (patch) | |
tree | 41bd72d6ffcd1c0d34b275b6fc27c7e236a40df2 /plugins/muc | |
parent | a3c13a5074a5b2967402be5a4d29408714940289 (diff) | |
download | prosody-62c6400a8c96d350fd6a6f5f596f6601b59bab0d.tar.gz prosody-62c6400a8c96d350fd6a6f5f596f6601b59bab0d.zip |
MUC: Fix a traceback caused by private IQ result and error stanzas where the encoded id can't be processed.
Diffstat (limited to 'plugins/muc')
-rw-r--r-- | plugins/muc/muc.lib.lua | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua index ae6b8e54..a7603535 100644 --- a/plugins/muc/muc.lib.lua +++ b/plugins/muc/muc.lib.lua @@ -525,7 +525,9 @@ function room_mt:handle_to_occupant(origin, stanza) -- PM, vCards, etc if type == "error" or type == "result" and stanza.name == "iq" then local id = stanza.attr.id; stanza.attr.from, stanza.attr.to, stanza.attr.id = deconstruct_stanza_id(self, stanza); - self:_route_stanza(stanza); + if stanza.attr.id then + self:_route_stanza(stanza); + end stanza.attr.from, stanza.attr.to, stanza.attr.id = from, to, id; else origin.send(st.error_reply(stanza, "cancel", "not-acceptable")); @@ -549,7 +551,9 @@ function room_mt:handle_to_occupant(origin, stanza) -- PM, vCards, etc if type == 'get' and stanza.tags[1].attr.xmlns == 'vcard-temp' then stanza.attr.to = jid_bare(stanza.attr.to); end - self:_route_stanza(stanza); + if stanza.attr.id then + self:_route_stanza(stanza); + end stanza.attr.from, stanza.attr.to, stanza.attr.id = from, to, id; else -- message stanza.attr.from = current_nick; |