aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2013-04-08 15:04:55 +0100
committerMatthew Wild <mwild1@gmail.com>2013-04-08 15:04:55 +0100
commite4f2da44a124f35514e5767fcd4485bdda648edb (patch)
tree1b593804084acf9148f1016283a985ef04bd52c2
parentf056043347346a781c3519b5fdb1b5357e3df771 (diff)
downloadprosody-e4f2da44a124f35514e5767fcd4485bdda648edb.tar.gz
prosody-e4f2da44a124f35514e5767fcd4485bdda648edb.zip
mod_pubsub: Don't attempt to handle iq stanzas with no action element
-rw-r--r--plugins/mod_pubsub.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_pubsub.lua b/plugins/mod_pubsub.lua
index 5ff3a029..8f078f54 100644
--- a/plugins/mod_pubsub.lua
+++ b/plugins/mod_pubsub.lua
@@ -22,6 +22,7 @@ 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
local handler = handlers[stanza.attr.type.."_"..action.name];
if handler then
handler(origin, stanza, action);