(fix) properly escape the UID too

pull/186/head
Ludovic Marcotte 2016-01-07 10:17:37 -05:00
parent 8237aaf74a
commit a755546f75
1 changed files with 1 additions and 1 deletions

View File

@ -234,7 +234,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// UID -- http://msdn.microsoft.com/en-us/library/ee159919(v=exchg.80).aspx
if (![self recurrenceId] && [[self uid] length])
[s appendFormat: @"<UID xmlns=\"Calendar:\">%@</UID>", [self uid]];
[s appendFormat: @"<UID xmlns=\"Calendar:\">%@</UID>", [[self uid] activeSyncRepresentationInContext: context]];
// Sensitivity
if ([[self accessClass] isEqualToString: @"PRIVATE"])