Fixed basic chat room constructor causing it to not store participants in db

This commit is contained in:
Sylvain Berfini 2018-04-11 14:48:44 +02:00
parent 00e015436d
commit 07a7eec84c

View file

@ -32,7 +32,7 @@ LINPHONE_BEGIN_NAMESPACE
// -----------------------------------------------------------------------------
BasicChatRoom::BasicChatRoom (const shared_ptr<Core> &core, const ChatRoomId &chatRoomId) :
ChatRoom(*new BasicChatRoomPrivate, core, chatRoomId) {}
BasicChatRoom(*new BasicChatRoomPrivate, core, chatRoomId) {}
BasicChatRoom::BasicChatRoom (
BasicChatRoomPrivate &p,