mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
UTF8 handling in conference names in history
This commit is contained in:
parent
4cb99a62a0
commit
0202c7aa6b
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue