mirror of
https://github.com/Kopano-dev/kopano-ol-extension.git
synced 2023-10-10 11:37:40 +00:00
[KOE-149] Setting displayName later in GAB syncing, to prevent Outlook from constructing its own version.
This commit is contained in:
parent
be5d698654
commit
7404b15d7a
@ -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)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user