Skip to content

Commit

Permalink
(fix) Make sure we escape the organizer name over EAS (fixes #3615)
Browse files Browse the repository at this point in the history
  • Loading branch information
extrafu committed Apr 5, 2016
1 parent d697c34 commit 852d3db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ActiveSync/iCalEvent+ActiveSync.m
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ - (NSString *) activeSyncRepresentationInContext: (WOContext *) context

o = [organizer cn];
if ([o length])
[s appendFormat: @"<Organizer_Name xmlns=\"Calendar:\">%@</Organizer_Name>", o];
[s appendFormat: @"<Organizer_Name xmlns=\"Calendar:\">%@</Organizer_Name>", [o activeSyncRepresentationInContext: context]];
}
}

Expand Down

0 comments on commit 852d3db

Please sign in to comment.