fix chats list in ipad not updated when subject of group chatroom changed

This commit is contained in:
Danmei Chen 2019-11-27 17:05:07 +01:00
parent 4e69d62f10
commit e7d60c6227

View file

@ -1017,6 +1017,9 @@ void on_chat_room_subject_changed(LinphoneChatRoom *cr, const LinphoneEventLog *
view.addressLabel.text = [NSString stringWithUTF8String:subject];
[view.tableController addEventEntry:(LinphoneEventLog *)event_log];
[view.tableController scrollToBottom:true];
if (IPAD) {
[VIEW(ChatsListView).tableController loadData];
}
}
}