From 0202c7aa6b1a7de4e8b567389596a66ca335e89a Mon Sep 17 00:00:00 2001 From: Christophe Deschamps Date: Tue, 22 Nov 2022 22:39:01 +0100 Subject: [PATCH] UTF8 handling in conference names in history --- Classes/LinphoneUI/UIHistoryCell.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/LinphoneUI/UIHistoryCell.m b/Classes/LinphoneUI/UIHistoryCell.m index 346c029c6..eb930d867 100644 --- a/Classes/LinphoneUI/UIHistoryCell.m +++ b/Classes/LinphoneUI/UIHistoryCell.m @@ -91,7 +91,7 @@ // Set up the cell... if (linphone_call_log_was_conference(callLog)) { const char *subject = linphone_conference_info_get_subject(linphone_call_log_get_conference_info(callLog)); - displayNameLabel.text = [NSString stringWithFormat:@"%s",subject]; + displayNameLabel.text = [NSString stringWithUTF8String:subject]; [_avatarImage setImage:[UIImage imageNamed:@"voip_multiple_contacts_avatar"]]; _stateImage.hidden = true; } else {