From 7404b15d7a69fea343d2791a870b776330560fc0 Mon Sep 17 00:00:00 2001 From: Patrick Simpson Date: Wed, 8 Nov 2017 13:26:01 +0200 Subject: [PATCH] [KOE-149] Setting displayName later in GAB syncing, to prevent Outlook from constructing its own version. --- .../AcaciaZPushPlugin/Features/GAB/GABHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AcaciaZPushPlugin/AcaciaZPushPlugin/Features/GAB/GABHandler.cs b/src/AcaciaZPushPlugin/AcaciaZPushPlugin/Features/GAB/GABHandler.cs index aba773c..5e0372e 100644 --- a/src/AcaciaZPushPlugin/AcaciaZPushPlugin/Features/GAB/GABHandler.cs +++ b/src/AcaciaZPushPlugin/AcaciaZPushPlugin/Features/GAB/GABHandler.cs @@ -515,11 +515,11 @@ namespace Acacia.Features.GAB contact.CustomerID = id; // Create the contact data - if (Get(value, "displayName") != null) contact.FullName = Get(value, "displayName"); if (Get(value, "givenName") != null) contact.FirstName = Get(value, "givenName"); if (Get(value, "initials") != null) contact.Initials = Get(value, "initials"); if (Get(value, "surname") != null) contact.LastName = Get(value, "surname"); if (Get(value, "title") != null) contact.JobTitle = Get(value, "title"); + if (Get(value, "displayName") != null) contact.FullName = Get(value, "displayName"); if (Get(value, "smtpAddress") != null) {