Skip to content

Commit

Permalink
Merge pull request #291 from tfux/5239
Browse files Browse the repository at this point in the history
fix(eas): handle fileAs element (fixes #5239)
  • Loading branch information
extrafu committed Jan 9, 2021
2 parents d470ebc + dd8ebd1 commit 2826c83
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ActiveSync/NGVCard+ActiveSync.m
Expand Up @@ -109,6 +109,9 @@ - (NSString *) activeSyncRepresentationInContext: (WOContext *) context
if ((o = [n flattenedValueAtIndex: 4 forKey: @""]))
[s appendFormat: @"<Suffix xmlns=\"Contacts:\">%@</Suffix>", [o activeSyncRepresentationInContext: context]];

if ((o = [self fn]))
[s appendFormat: @"<FileAs xmlns=\"Contacts:\">%@</FileAs>", [o activeSyncRepresentationInContext: context]];

if ((o = [self workCompany]))
[s appendFormat: @"<CompanyName xmlns=\"Contacts:\">%@</CompanyName>", [o activeSyncRepresentationInContext: context]];

Expand Down

0 comments on commit 2826c83

Please sign in to comment.