From 983067d7181dd5e95abe38acb368f4cc582aeac7 Mon Sep 17 00:00:00 2001 From: Gautier Pelloux-Prayer Date: Wed, 20 Jan 2016 14:14:03 +0100 Subject: [PATCH] settings: correctly set display name when modified --- Classes/LinphoneCoreSettingsStore.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/LinphoneCoreSettingsStore.m b/Classes/LinphoneCoreSettingsStore.m index c3db77ff8..0cd7a9672 100644 --- a/Classes/LinphoneCoreSettingsStore.m +++ b/Classes/LinphoneCoreSettingsStore.m @@ -490,7 +490,7 @@ linphone_address_set_username(linphoneAddress, normalizedUserName); linphone_address_set_domain(linphoneAddress, [domain UTF8String]); linphone_address_set_display_name(linphoneAddress, (displayName.length ? displayName.UTF8String : NULL)); - const char *identity = linphone_address_as_string_uri_only(linphoneAddress); + const char *identity = linphone_address_as_string(linphoneAddress); const char *password = [accountPassword UTF8String]; const char *ha1 = [accountHa1 UTF8String];