From e7d60c6227de21ec20b2287d6beaabfcbf70f557 Mon Sep 17 00:00:00 2001 From: Danmei Chen Date: Wed, 27 Nov 2019 17:05:07 +0100 Subject: [PATCH] fix chats list in ipad not updated when subject of group chatroom changed --- Classes/ChatConversationView.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Classes/ChatConversationView.m b/Classes/ChatConversationView.m index 066fe58ec..c3d6ea243 100644 --- a/Classes/ChatConversationView.m +++ b/Classes/ChatConversationView.m @@ -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]; + } } }