Remove conditions on RSVP

Fixes #1850
This commit is contained in:
Francis Lachapelle
2012-11-30 15:11:03 -05:00
parent eed17fd95a
commit 5500f99312
2 changed files with 3 additions and 9 deletions
+1 -6
View File
@@ -2393,12 +2393,7 @@ RANGE(2);
{
ownerAttendee = [component userAsAttendee: ownerUser];
if (ownerAttendee)
{
if ([[ownerAttendee rsvp] isEqualToString: @"true"])
rc = 1;
else
rc = 2;
}
rc = 1;
}
return rc;