core/stanza_router.lua
changeset 8350 c72db8047440
parent 7950 24170d74b00b
child 8679 39ab6a296419
child 9070 89e1bf37ff64
--- 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;