plugins/mod_iq.lua

changeset 1288
d2dc0954ebfd
parent 1268
dc1f95b37024
child 1403
a1762cfd4d83
--- a/plugins/mod_iq.lua	Tue Jun 02 20:15:18 2009 +0500
+++ b/plugins/mod_iq.lua	Tue Jun 02 20:18:02 2009 +0500
@@ -37,7 +37,7 @@
 		end
 	end
 	-- TODO fire post processing events
-	if #stanza.tags == 1 then
+	if stanza.attr.type == "get" or stanza.attr.type == "set" then
 		return module:fire_event("iq/bare/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
 	else
 		return true; -- TODO do something with results and errors
@@ -48,7 +48,7 @@
 	-- IQ to a local host recieved
 	local origin, stanza = data.origin, data.stanza;
 
-	if #stanza.tags == 1 then
+	if stanza.attr.type == "get" or stanza.attr.type == "set" then
 		return module:fire_event("iq/host/"..stanza.tags[1].attr.xmlns..":"..stanza.tags[1].name, data);
 	else
 		return true; -- TODO do something with results and errors

mercurial