Commit 8f401fe8 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Fixed node == node condition. Thanks Matt.

git-svn-id: http://svn.igniterealtime.org/svn/repos/wildfire/trunk@3688 b35dd754-fafc-0310-a699-88a17e54d16e
parent 7b31f5c7
...@@ -967,7 +967,7 @@ public class MultiUserChatServerImpl extends BasicModule implements MultiUserCha ...@@ -967,7 +967,7 @@ public class MultiUserChatServerImpl extends BasicModule implements MultiUserCha
} }
public boolean hasInfo(String name, String node, JID senderJID) { public boolean hasInfo(String name, String node, JID senderJID) {
if (name == null && node == node) { if (name == null && node == null) {
// We always have info about the MUC service // We always have info about the MUC service
return true; return true;
} }
......
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