UTF8 handling in conference names in history

This commit is contained in:
Christophe Deschamps 2022-11-22 22:39:01 +01:00
parent 4cb99a62a0
commit 0202c7aa6b

View file

@ -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 {