fix(ChatRoom): set state correctly!!!

This commit is contained in:
Ronan Abhamon 2017-12-13 13:52:22 +01:00
parent a7df6db770
commit c0e065bc56

View file

@ -34,7 +34,7 @@ LINPHONE_BEGIN_NAMESPACE
void ChatRoomPrivate::setState (ChatRoom::State state) {
if (this->state != state) {
state = this->state;
this->state = state;
notifyStateChanged();
}
}