(fix) Make sure we escape the organizer name over EAS (fixes #3615)

This commit is contained in:
Ludovic Marcotte 2016-04-05 15:21:14 -04:00
parent e931b141bf
commit 40b040f26e

View file

@ -152,7 +152,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
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]];
}
}