[KOE-149] Setting displayName later in GAB syncing, to prevent Outlook from constructing its own version.

This commit is contained in:
Patrick Simpson 2017-11-08 13:26:01 +02:00
parent be5d698654
commit 7404b15d7a
1 changed files with 1 additions and 1 deletions

View File

@ -515,11 +515,11 @@ namespace Acacia.Features.GAB
contact.CustomerID = id;
// Create the contact data
if (Get<string>(value, "displayName") != null) contact.FullName = Get<string>(value, "displayName");
if (Get<string>(value, "givenName") != null) contact.FirstName = Get<string>(value, "givenName");
if (Get<string>(value, "initials") != null) contact.Initials = Get<string>(value, "initials");
if (Get<string>(value, "surname") != null) contact.LastName = Get<string>(value, "surname");
if (Get<string>(value, "title") != null) contact.JobTitle = Get<string>(value, "title");
if (Get<string>(value, "displayName") != null) contact.FullName = Get<string>(value, "displayName");
if (Get<string>(value, "smtpAddress") != null)
{