Commit aecc9d00 authored by Gaston Dombiak's avatar Gaston Dombiak Committed by gato

Fixed incorrect resource in JID.

git-svn-id: http://svn.igniterealtime.org/svn/repos/openfire/trunk@8646 b35dd754-fafc-0310-a699-88a17e54d16e
parent 75ca8d1c
...@@ -937,7 +937,7 @@ public class MUCRoomImpl implements MUCRoom { ...@@ -937,7 +937,7 @@ public class MUCRoomImpl implements MUCRoom {
public JID getRoleAddress() { public JID getRoleAddress() {
if (crJID == null) { if (crJID == null) {
crJID = new JID(room.getName(), server.getServiceDomain(), "", true); crJID = new JID(room.getName(), server.getServiceDomain(), null, true);
} }
return crJID; return crJID;
} }
......
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