From 9199d42e51b3edb002c43a50e2c7ca18f348f8fe Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Tue, 9 Aug 2016 16:22:09 -0400 Subject: [PATCH] Minor improvement over previous commit --- SoObjects/Appointments/SOGoAppointmentObject.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SoObjects/Appointments/SOGoAppointmentObject.m b/SoObjects/Appointments/SOGoAppointmentObject.m index e4b243f55..04721deab 100644 --- a/SoObjects/Appointments/SOGoAppointmentObject.m +++ b/SoObjects/Appointments/SOGoAppointmentObject.m @@ -2127,7 +2127,7 @@ inRecurrenceExceptionsForEvent: (iCalEvent *) theEvent uid = [[oldEvent organizer] uidInContext: context]; - if ([[[context activeUser] login] caseInsensitiveCompare: uid] != NSOrderedSame) + if (uid && [[[context activeUser] login] caseInsensitiveCompare: uid] != NSOrderedSame) { SOGoAppointmentObject *organizerObject;