mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
fix(MainDb): do not notify chat room creation on fetch
This commit is contained in:
parent
8e46319d93
commit
d98b3a6b33
1 changed files with 2 additions and 1 deletions
|
|
@ -2019,7 +2019,8 @@ static inline string blobToString (soci::blob &in) {
|
|||
if (capabilities & static_cast<int>(ChatRoom::Capabilities::Basic)) {
|
||||
chatRoom = core->getPrivate()->createBasicChatRoom(
|
||||
chatRoomId,
|
||||
capabilities & static_cast<int>(ChatRoom::Capabilities::RealTimeText)
|
||||
capabilities & static_cast<int>(ChatRoom::Capabilities::RealTimeText),
|
||||
false
|
||||
);
|
||||
chatRoom->setSubject(subject);
|
||||
} else if (capabilities & static_cast<int>(ChatRoom::Capabilities::Conference)) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue