From a42d6ce450adbb9c062bb8bf541c4411c05f4a66 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Fri, 13 Jan 2017 13:17:20 -0500 Subject: [PATCH] (fix) remove all alarms before IMIP reply (fixes #3925) --- SoObjects/Appointments/SOGoCalendarComponent.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/SoObjects/Appointments/SOGoCalendarComponent.m b/SoObjects/Appointments/SOGoCalendarComponent.m index cc3847bcd..6ae1c7841 100644 --- a/SoObjects/Appointments/SOGoCalendarComponent.m +++ b/SoObjects/Appointments/SOGoCalendarComponent.m @@ -935,6 +935,9 @@ if ([[context objectForKey: @"DeviceType"] isEqualToString: @"WindowsOutlook15"]) return; + // remove all alarms to avoid bug #3925 + [event removeAllAlarms]; + dd = [from domainDefaults]; if ([dd appointmentSendEMailNotifications] && [event isStillRelevant]) {