Fix for joining chat room multiple times when auto-join set.

fix-message-formatting
Danny van Heumen 11 years ago
parent 6da2f0c737
commit 812cc1122e

@ -275,13 +275,12 @@ public void run()
// chat room is not existent we must create it and join // chat room is not existent we must create it and join
// it // it
ChatRoomWrapper roomWrapper = ChatRoomWrapper roomWrapper =
MUCActivator.getMUCService() MUCActivator.getMUCService().createChatRoom(
.createChatRoom( chatRoomWrapper.getChatRoomName(),
chatRoomWrapper.getChatRoomName(), chatRoomWrapper.getParentProvider()
chatRoomWrapper.getParentProvider() .getProtocolProvider(),
.getProtocolProvider(), new ArrayList<String>(), "", false, false,
new ArrayList<String>(), "", false, true);
true);
String nickName = String nickName =
ConfigurationUtils.getChatRoomProperty( ConfigurationUtils.getChatRoomProperty(

Loading…
Cancel
Save