aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-04-08 15:32:24 +0100
committerMatthew Wild <mwild1@gmail.com>2013-04-08 15:32:24 +0100
commit2d2a63e24d15a5cb5a26331f2421de7a63f38105 (patch)
treefc78ef5c157ed829188a235259e105fc4d72c748
parente4f2da44a124f35514e5767fcd4485bdda648edb (diff)
downloadprosody-2d2a63e24d15a5cb5a26331f2421de7a63f38105.tar.gz
prosody-2d2a63e24d15a5cb5a26331f2421de7a63f38105.zip
mod_pubsub: Send bad-request when no action specified (thanks Maranda)
-rw-r--r--plugins/mod_pubsub.lua4
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);