From e536ded32d85483e834f541ef3986a6ae13bf618 Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Fri, 10 Nov 2017 09:34:01 +0100 Subject: [PATCH] fix(ClientGroupChatRoom): do not create base ChatRoom with me!!! --- src/chat/chat-room/client-group-chat-room.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/chat/chat-room/client-group-chat-room.cpp b/src/chat/chat-room/client-group-chat-room.cpp index 9c1ba2eb5..1cf7f0250 100644 --- a/src/chat/chat-room/client-group-chat-room.cpp +++ b/src/chat/chat-room/client-group-chat-room.cpp @@ -81,7 +81,7 @@ ClientGroupChatRoom::ClientGroupChatRoom ( const Address &me, const std::string &uri, const std::string &subject -) : ChatRoom(*new ClientGroupChatRoomPrivate, core, me), RemoteConference(core->getCCore(), me, nullptr) { +) : ChatRoom(*new ClientGroupChatRoomPrivate, core, Address()), RemoteConference(core->getCCore(), me, nullptr) { L_D_T(RemoteConference, dConference); dConference->focus = make_shared(Address(uri)); RemoteConference::setSubject(subject);