util.filters: Fix inserting items so that higher priority filters run first
[prosody.git] / plugins / mod_pubsub.lua
index 22969ab5f067d9fee54364c8ffc933d9fcf6bb99..926ed4f2e8ba483fec1c7ed930e64776d4c46671 100644 (file)
@@ -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));