From dbdb7d90513aa54c2aa314013f236c434eeb0082 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Wed, 9 Jul 2014 10:04:44 -0400 Subject: [PATCH] Fix sending of METHOD:REPLY for DAV clients --- NEWS | 1 + SoObjects/Appointments/SOGoAppointmentObject.m | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) 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]; }