From 1ae216b2011d4f7ff3edc5de187c239bb360a18e Mon Sep 17 00:00:00 2001 From: Filippo Bottega Date: Sat, 24 Jul 2021 22:21:35 +0200 Subject: [PATCH] Update ContactEntityMapper.cs I propose to change target.Inner.FullName to target.Inner.Title as ContactEntityMapper.cs line 257: ... if (!string.IsNullOrEmpty(source.Inner.FileAs)) target.Title = source.Inner.FileAs; ... --- .../Implementation/Contacts/ContactEntityMapper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CalDavSynchronizer/Implementation/Contacts/ContactEntityMapper.cs b/CalDavSynchronizer/Implementation/Contacts/ContactEntityMapper.cs index ffff7ca0..af445216 100644 --- a/CalDavSynchronizer/Implementation/Contacts/ContactEntityMapper.cs +++ b/CalDavSynchronizer/Implementation/Contacts/ContactEntityMapper.cs @@ -263,7 +263,7 @@ public async Task Map2To1 (vCard source, IContactItemWrappe target.Inner.ManagerName = source.Manager; if (string.IsNullOrEmpty (target.Inner.FullName)) - target.Inner.FullName = source.FormattedName; + target.Inner.Title = source.FormattedName; if (!_configuration.KeepOutlookFileAs) target.Inner.FileAs = source.FormattedName; @@ -1051,4 +1051,4 @@ private void MapIMs2To1 (vCard source, ContactItem target) } } } -} \ No newline at end of file +}