From b3a5168191c64af8f9cc864ccb77e0bcf4775d0f Mon Sep 17 00:00:00 2001 From: Christophe Deschamps Date: Fri, 3 Sep 2021 08:41:19 +0200 Subject: [PATCH] Re-enable voice play button in chat after call ending --- Classes/ChatConversationView.m | 1 + 1 file changed, 1 insertion(+) diff --git a/Classes/ChatConversationView.m b/Classes/ChatConversationView.m index 1a29be608..d7e4d4479 100644 --- a/Classes/ChatConversationView.m +++ b/Classes/ChatConversationView.m @@ -476,6 +476,7 @@ static UICompositeViewDescription *compositeDescription = nil; - (void)callUpdateEvent:(NSNotification *)notif { [self updateSuperposedButtons]; _toggleRecord.enabled = linphone_core_get_calls_nb(LC) == 0; + [_tableController.tableView reloadData]; }