Added '&' as valid (non-private) channel prefix.

fix-message-formatting
Danny van Heumen 12 years ago
parent c2b45b3c4a
commit 770681d6d8

@ -1070,7 +1070,8 @@ public boolean isPrivate()
// TODO Since we cannot change the chat room name/identifier maybe we
// should compute this upon construction and save the result, instead of
// doing a string operation every time the method is called.
return !this.chatRoomName.startsWith("#");
return !this.chatRoomName.startsWith("#")
&& !this.chatRoomName.startsWith("&");
}
/**

Loading…
Cancel
Save