diff --git a/NEWS b/NEWS index a4309710d..11189b45f 100644 --- a/NEWS +++ b/NEWS @@ -6,6 +6,7 @@ Enhancements Bug fixes - fixed rename of calendars + - we now correctly add the "METHOD:REPLY" when sending out ITIP messages from DAV clients 2.2.6 (2014-07-02) ------------------ diff --git a/SoObjects/Appointments/SOGoAppointmentObject.m b/SoObjects/Appointments/SOGoAppointmentObject.m index 0e397928f..584c62cc4 100644 --- a/SoObjects/Appointments/SOGoAppointmentObject.m +++ b/SoObjects/Appointments/SOGoAppointmentObject.m @@ -1834,9 +1834,8 @@ inRecurrenceExceptionsForEvent: (iCalEvent *) theEvent // else if (scheduling && [event userIsAttendee: ownerUser]) { - [self sendIMIPReplyForEvent: event - from: ownerUser - to: [event organizer]]; + [self sendResponseToOrganizer: event + from: ownerUser]; }