From 76360958a2a82a67bee00590fd8c76b1fe5733e3 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Tue, 9 Jun 2015 13:38:10 -0400 Subject: [PATCH] (fix) make sure PRODID is set to Inverse/SOGo when importing events --- SoObjects/Appointments/SOGoAppointmentFolder.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/SoObjects/Appointments/SOGoAppointmentFolder.m b/SoObjects/Appointments/SOGoAppointmentFolder.m index 915fd4aa5..f0d310bd7 100644 --- a/SoObjects/Appointments/SOGoAppointmentFolder.m +++ b/SoObjects/Appointments/SOGoAppointmentFolder.m @@ -3157,6 +3157,8 @@ firstInstanceCalendarDateRange: (NGCalendarDateRange *) fir inContainer: self]; [object setIsNew: YES]; content = [NSMutableString stringWithString: @"BEGIN:VCALENDAR\n"]; + [content appendFormat: @"PRODID:-//Inverse inc./SOGo %@//EN\n", SOGoVersion]; + if (timezone) [content appendFormat: @"%@\n", [timezone versitString]]; [content appendFormat: @"%@\nEND:VCALENDAR", [event versitString]];