diff options
author | Matthew Wild <mwild1@gmail.com> | 2013-05-10 10:48:07 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2013-05-10 10:48:07 +0100 |
commit | 8c189d268e700e18db59afed37af79e61e0f8b20 (patch) | |
tree | 6ebabe3b7fdbc85dfee6bae922ecc2bf73f919fe /plugins/mod_pubsub.lua | |
parent | 0a7aa9be7afef15a53c7f46a2a58e3381a348d36 (diff) | |
parent | 8124de1f0e093a3b97bd9fbdb19975f1c9c02a26 (diff) | |
download | prosody-8c189d268e700e18db59afed37af79e61e0f8b20.tar.gz prosody-8c189d268e700e18db59afed37af79e61e0f8b20.zip |
Merge 0.9->trunk
Diffstat (limited to 'plugins/mod_pubsub.lua')
-rw-r--r-- | plugins/mod_pubsub.lua | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/mod_pubsub.lua b/plugins/mod_pubsub.lua index 22969ab5..926ed4f2 100644 --- a/plugins/mod_pubsub.lua +++ b/plugins/mod_pubsub.lua @@ -80,9 +80,6 @@ end function handlers.get_subscriptions(origin, stanza, subscriptions) local node = subscriptions.attr.node; - if not node then - return origin.send(pubsub_error_reply(stanza, "nodeid-required")); - end local ok, ret = service:get_subscriptions(node, stanza.attr.from, stanza.attr.from); if not ok then return origin.send(pubsub_error_reply(stanza, ret)); |