Software /
code /
prosody
Changeset
2043:c0784614b66f
PEP: Stricter checks on payload validity.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Thu, 22 Oct 2009 02:16:10 +0500 |
parents | 2042:34e6e06dd089 |
children | 2044:11efc4aecd55 |
files | plugins/mod_pep.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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;