replace ampersands with commas

This commit is contained in:
Alexandre Cloutier
2014-07-16 10:03:13 -04:00
parent 7c3e85f517
commit 89d116363c

View File

@@ -472,7 +472,7 @@
value = [unavailableAttendees objectAtIndex:i];
[reason appendString:[value keysWithFormat: @"\n %{Cn}"]];
if (!(i == (count - 1)))
[reason appendString:@" &"];
[reason appendString:@", "];
}
[unavailableAttendees release];
return [NSException exceptionWithHTTPStatus:403 reason: reason];