replace ampersands with commas

pull/45/head
Alexandre Cloutier 2014-07-16 10:03:13 -04:00
parent 7c3e85f517
commit 89d116363c
1 changed files with 1 additions and 1 deletions

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];