diff --git a/SoObjects/Appointments/SOGoAppointmentFolder.m b/SoObjects/Appointments/SOGoAppointmentFolder.m index 15737c955..7e1e9156c 100644 --- a/SoObjects/Appointments/SOGoAppointmentFolder.m +++ b/SoObjects/Appointments/SOGoAppointmentFolder.m @@ -21,7 +21,6 @@ #import #import -#import #import #import #import @@ -763,14 +762,14 @@ static NSNumber *sharedYes = nil; to: (NSCalendarDate *) _endDate { static NSArray *infos = nil; // TODO: move to a plist file - if (infos == nil) { - infos = [[NSArray alloc] initWithObjects:@"partmails", @"partstates", nil]; - } - return [self fetchFields: infos - from: _startDate to: _endDate - component: nil]; -} + + if (!infos) + infos = [[NSArray alloc] initWithObjects: @"partmails", @"partstates", + @"isopaque", @"status", nil]; + return [self fetchFields: infos from: _startDate to: _endDate + component: @"vevent"]; +} - (NSArray *) fetchCoreInfosFrom: (NSCalendarDate *) _startDate to: (NSCalendarDate *) _endDate