Software /
code /
prosody
Changeset
8347:c72db8047440
core.stanza_router: Verify that xmlns exists for firing stanza/iq/xmlns/name events (fixes #1022) (thanks SamWhited)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 17 Oct 2017 07:09:00 +0200 |
parents | 8293:34814a908557 |
children | 8348:c3de5b454ec4 |
files | core/stanza_router.lua |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/core/stanza_router.lua Thu Oct 05 17:44:47 2017 +0200 +++ b/core/stanza_router.lua Tue Oct 17 07:09:00 2017 +0200 @@ -140,7 +140,8 @@ 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;