From 88cab67f6d68c037be10bd02a31bd731af39907b Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Wed, 10 Jun 2015 10:12:15 -0400 Subject: [PATCH] (fix) properly escape folder after creation using EAS (#3237) --- ActiveSync/SOGoActiveSyncDispatcher.m | 2 +- NEWS | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ActiveSync/SOGoActiveSyncDispatcher.m b/ActiveSync/SOGoActiveSyncDispatcher.m index 2ed420f13..83314be2f 100644 --- a/ActiveSync/SOGoActiveSyncDispatcher.m +++ b/ActiveSync/SOGoActiveSyncDispatcher.m @@ -453,7 +453,7 @@ static BOOL debugOn = NO; [s appendString: @""]; [s appendFormat: @"%d", 1]; [s appendFormat: @"%@", syncKey]; - [s appendFormat: @"%@", nameInContainer]; + [s appendFormat: @"%@", [nameInContainer stringByEscapingURL]]; [s appendString: @""]; d = [[s dataUsingEncoding: NSUTF8StringEncoding] xml2wbxml]; diff --git a/NEWS b/NEWS index 00e308a60..e325847da 100644 --- a/NEWS +++ b/NEWS @@ -8,7 +8,8 @@ Enhancements Bug fixes - EAS's GetItemEstimate/ItemOperations now support fetching mails and empty folders - - Fixed some rare cornercases in multidomain configurations + - fixed some rare cornercases in multidomain configurations + - properly escape folder after creation using EAS (#3237) 2.3.0 (2015-06-01) -------------------