diff --git a/core/src/main/groovy/com/muwire/core/chat/ChatManager.groovy b/core/src/main/groovy/com/muwire/core/chat/ChatManager.groovy index 2b6ab58e..36680a12 100644 --- a/core/src/main/groovy/com/muwire/core/chat/ChatManager.groovy +++ b/core/src/main/groovy/com/muwire/core/chat/ChatManager.groovy @@ -47,7 +47,8 @@ class ChatManager { eventBus.publish(new ChatConnectionEvent(status : ChatConnectionAttemptStatus.SUCCESSFUL, persona : me, connection : LocalChatLink.INSTANCE, defaultRoom: defaultChatRoom)) } else { - ChatClient client = new ChatClient(connector, eventBus, e.host, me, trustService, settings) + ChatClient client = new ChatClient(connector, eventBus, e.host, me, profileSupplier, + trustService, settings) clients.put(e.host, client) } }