aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-10-25 01:32:30 +0200
committerKim Alvefur <zash@zash.se>2017-10-25 01:32:30 +0200
commit81dc4dad413e00640888fb6fbebba44265ac773f (patch)
tree05790f7698486aa2433085e2478a8638de5e9cd0 /core
parent4e1f9c879676e7b547ec5b0042929b2cbb031752 (diff)
parent26f7e8de2c42283231a0ffd455f91f42273ccf30 (diff)
downloadprosody-81dc4dad413e00640888fb6fbebba44265ac773f.tar.gz
prosody-81dc4dad413e00640888fb6fbebba44265ac773f.zip
Merge 0.10->trunk
Diffstat (limited to 'core')
-rw-r--r--core/stanza_router.lua3
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;