Skip to content

Commit

Permalink
fix(eas): handle fileAs element (fixes #5239)
Browse files Browse the repository at this point in the history
  • Loading branch information
tfux committed Jan 6, 2021
1 parent d470ebc commit dd8ebd1
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 dd8ebd1

Please sign in to comment.