Commit 2bc304c8 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gaston

Implemented #canBroadcastPresence.


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@457 b35dd754-fafc-0310-a699-88a17e54d16e
parent b2c7ac78
...@@ -487,7 +487,7 @@ class MUCPersistentRoomSurrogate implements MUCRoom, Cacheable { ...@@ -487,7 +487,7 @@ class MUCPersistentRoomSurrogate implements MUCRoom, Cacheable {
} }
public boolean canBroadcastPresence(String roleToBroadcast) { public boolean canBroadcastPresence(String roleToBroadcast) {
throw new UnsupportedOperationException(); return "none".equals(roleToBroadcast) || rolesToBroadcastPresence.contains(roleToBroadcast);
} }
public void unlockRoom(MUCRole senderRole) { public void unlockRoom(MUCRole senderRole) {
......
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