(fix) properly escape folder after creation using EAS (#3237)

This commit is contained in:
Ludovic Marcotte
2015-06-10 10:12:15 -04:00
parent e1ecf797f5
commit 88cab67f6d
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -453,7 +453,7 @@ static BOOL debugOn = NO;
[s appendString: @"<FolderCreate xmlns=\"FolderHierarchy:\">"];
[s appendFormat: @"<Status>%d</Status>", 1];
[s appendFormat: @"<SyncKey>%@</SyncKey>", syncKey];
[s appendFormat: @"<ServerId>%@</ServerId>", nameInContainer];
[s appendFormat: @"<ServerId>%@</ServerId>", [nameInContainer stringByEscapingURL]];
[s appendString: @"</FolderCreate>"];
d = [[s dataUsingEncoding: NSUTF8StringEncoding] xml2wbxml];
+2 -1
View File
@@ -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)
-------------------