diff --git a/SoObjects/Appointments/SOGoAppointmentObject.m b/SoObjects/Appointments/SOGoAppointmentObject.m index a975fa9df..6228b6331 100644 --- a/SoObjects/Appointments/SOGoAppointmentObject.m +++ b/SoObjects/Appointments/SOGoAppointmentObject.m @@ -1147,10 +1147,9 @@ inRecurrenceExceptionsForEvent: (iCalEvent *) theEvent ownerUser = [SOGoUser userWithLogin: owner]; if (!(ex || [event userIsOrganizer: ownerUser])) { - if ([[attendee rsvp] isEqualToString: @"true"] - && [event isStillRelevant]) + if ([event isStillRelevant]) [self sendResponseToOrganizer: event - from: ownerUser]; + from: ownerUser]; organizerUID = [[event organizer] uid]; diff --git a/UI/Scheduler/UIxComponentEditor.m b/UI/Scheduler/UIxComponentEditor.m index 89ecc2f59..9aef4cb05 100644 --- a/UI/Scheduler/UIxComponentEditor.m +++ b/UI/Scheduler/UIxComponentEditor.m @@ -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;