diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-04-08 15:32:24 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-04-08 15:32:24 +0100 |
commit | f9c0972b482fe78738477bd4300b74cd274d67e6 (patch) | |
tree | fc78ef5c157ed829188a235259e105fc4d72c748 /plugins/mod_pubsub.lua | |
parent | b026f94410817b6927769c5fd410d3e98b326091 (diff) | |
download | prosody-f9c0972b482fe78738477bd4300b74cd274d67e6.tar.gz prosody-f9c0972b482fe78738477bd4300b74cd274d67e6.zip |
mod_pubsub: Send bad-request when no action specified (thanks Maranda)
Diffstat (limited to 'plugins/mod_pubsub.lua')
-rw-r--r-- | plugins/mod_pubsub.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/mod_pubsub.lua b/plugins/mod_pubsub.lua index 8f078f54..7bd33102 100644 --- a/plugins/mod_pubsub.lua +++ b/plugins/mod_pubsub.lua @@ -22,7 +22,9 @@ function handle_pubsub_iq(event) local origin, stanza = event.origin, event.stanza; local pubsub = stanza.tags[1]; local action = pubsub.tags[1]; - if not action then return; end + if not action then + return origin.send(st.error_reply(stanza, "cancel", "bad-request")); + end local handler = handlers[stanza.attr.type.."_"..action.name]; if handler then handler(origin, stanza, action); |