From 6fdbd615b680a6717b015c153758762841ee943c Mon Sep 17 00:00:00 2001 From: Benjamin Verdier Date: Mon, 11 Jun 2018 16:35:41 +0200 Subject: [PATCH] Fixed reload issue --- Classes/LinphoneUI/UIChatBubblePhotoCell.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Classes/LinphoneUI/UIChatBubblePhotoCell.m b/Classes/LinphoneUI/UIChatBubblePhotoCell.m index ba0aed618..0188ca7c7 100644 --- a/Classes/LinphoneUI/UIChatBubblePhotoCell.m +++ b/Classes/LinphoneUI/UIChatBubblePhotoCell.m @@ -128,7 +128,9 @@ return; } [super update]; - + ChatConversationTableView *tableView = VIEW(ChatConversationView).tableController; + [tableView.tableView beginUpdates]; + [tableView.tableView endUpdates]; const char *url = linphone_chat_message_get_external_body_url(self.message); BOOL is_external = (url && (strstr(url, "http") == url)) || linphone_chat_message_get_file_transfer_information(self.message);