plugins/mod_pep.lua

changeset 2043
c0784614b66f
parent 2042
34e6e06dd089
child 2044
11efc4aecd55
--- a/plugins/mod_pep.lua	Thu Oct 22 02:13:02 2009 +0500
+++ b/plugins/mod_pep.lua	Thu Oct 22 02:16:10 2009 +0500
@@ -133,7 +133,7 @@
 			if payload and (payload.name == 'publish' or payload.name == 'retract') and payload.attr.node then -- <publish node='http://jabber.org/protocol/tune'>
 				local node = payload.attr.node;
 				payload = payload.tags[1];
-				if payload then -- <item>
+				if payload and payload.name == "item" then -- <item>
 					publish(session, node, st.clone(payload));
 					session.send(st.reply(stanza));
 					return true;

mercurial