mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-19 12:08:11 +00:00
notify core when chat room is created instead of instantiated
This commit is contained in:
parent
d111d78f71
commit
7c2ce9d173
1 changed files with 2 additions and 1 deletions
|
|
@ -60,7 +60,8 @@ void ChatRoomPrivate::setState (ChatRoom::State newState) {
|
|||
L_Q();
|
||||
if (newState != state) {
|
||||
state = newState;
|
||||
if (state == ChatRoom::State::Instantiated)
|
||||
if (state == ChatRoom::State::Created)
|
||||
// TODO : Rename from instatiated to created.
|
||||
linphone_core_notify_chat_room_instantiated(q->getCore()->getCCore(), L_GET_C_BACK_PTR(q));
|
||||
notifyStateChanged();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue