diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-04-08 15:04:55 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-04-08 15:04:55 +0100 |
commit | 746de7c5337281b98f05a287f7f3bd2024eb8e46 (patch) | |
tree | 1b593804084acf9148f1016283a985ef04bd52c2 /plugins/mod_pubsub.lua | |
parent | aae8df412a2bae509d24b4af42f845003f6b9935 (diff) | |
download | prosody-746de7c5337281b98f05a287f7f3bd2024eb8e46.tar.gz prosody-746de7c5337281b98f05a287f7f3bd2024eb8e46.zip |
mod_pubsub: Don't attempt to handle iq stanzas with no action element
Diffstat (limited to 'plugins/mod_pubsub.lua')
-rw-r--r-- | plugins/mod_pubsub.lua | 1 |
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); |