Software /
code /
prosody
Diff
core/stanza_router.lua @ 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 |
parent | 7947:24170d74b00b |
child | 8676:39ab6a296419 |
child | 9067:89e1bf37ff64 |
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;