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 | d7dbbc087154aa0dbf338dc7aea0f0ddd38c9e8a (patch) | |
tree | fc78ef5c157ed829188a235259e105fc4d72c748 /plugins | |
parent | 2c3275e59ae13bae9f212989f21bc18755f968cf (diff) | |
download | prosody-d7dbbc087154aa0dbf338dc7aea0f0ddd38c9e8a.tar.gz prosody-d7dbbc087154aa0dbf338dc7aea0f0ddd38c9e8a.zip |
mod_pubsub: Send bad-request when no action specified (thanks Maranda)
Diffstat (limited to 'plugins')
-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); |