Commit 5b46a8ed authored by Greg Thomas's avatar Greg Thomas

Allow components to subscribe to nodes

parent 8c554c16
...@@ -543,7 +543,7 @@ public class PubSubEngine { ...@@ -543,7 +543,7 @@ public class PubSubEngine {
return; return;
} }
// Check if the subscriber is an anonymous user // Check if the subscriber is an anonymous user
if (!UserManager.getInstance().isRegisteredUser(subscriberJID)) { if (!UserManager.getInstance().isRegisteredUser(subscriberJID) && !isComponent(subscriberJID)) {
// Anonymous users cannot subscribe to the node. Return forbidden error // Anonymous users cannot subscribe to the node. Return forbidden error
sendErrorPacket(iq, PacketError.Condition.forbidden, null); sendErrorPacket(iq, PacketError.Condition.forbidden, null);
return; return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment