diff options
author | Kim Alvefur <zash@zash.se> | 2017-10-17 07:09:00 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-10-17 07:09:00 +0200 |
commit | a9461d5ec8c62f0790f125ece8758dce70bbdbca (patch) | |
tree | 9607b23ebe655833029c7262a613f4e632c15954 /core/stanza_router.lua | |
parent | ce996cdb1cdc4c5331332df525b9d181c8fc0c4e (diff) | |
download | prosody-a9461d5ec8c62f0790f125ece8758dce70bbdbca.tar.gz prosody-a9461d5ec8c62f0790f125ece8758dce70bbdbca.zip |
core.stanza_router: Verify that xmlns exists for firing stanza/iq/xmlns/name events (fixes #1022) (thanks SamWhited)
Diffstat (limited to 'core/stanza_router.lua')
-rw-r--r-- | core/stanza_router.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua index 2312614c..0be92f88 100644 --- a/core/stanza_router.lua +++ b/core/stanza_router.lua @@ -140,7 +140,8 @@ function core_process_stanza(origin, stanza) if h then local event; if xmlns == nil then - if stanza.name == "iq" and (stanza.attr.type == "set" or stanza.attr.type == "get") then + if stanza.name == "iq" and (stanza.attr.type == "set" or stanza.attr.type == "get") + and stanza.tags[1] and stanza.tags[1].attr.xmlns then event = "stanza/iq/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name; else event = "stanza/"..stanza.name; |