# HG changeset patch # User Kim Alvefur # Date 1508216940 -7200 # Node ID c72db8047440b713ecdb1ebd3408a080cb0b0fe1 # Parent 34814a908557d7c9029bc0220510e3aed028ab2f core.stanza_router: Verify that xmlns exists for firing stanza/iq/xmlns/name events (fixes #1022) (thanks SamWhited) diff -r 34814a908557 -r c72db8047440 core/stanza_router.lua --- 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;