diff --git a/ChangeLog b/ChangeLog index 69feb0448..ad18b4ff6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-06-09 Wolfgang Sourdeau + * SoObjects/SOGo/SOGoUserFolder.m (_subFoldersFromFolder:): + restore the "owner" record that went bugously missing a few days + ago. + * SoObjects/Appointments/SOGoAppointmentFolderObject.m (-_folderCalendars): we now fetch the records only covering the value of SOGoDAVCalendarStartTimeLimit in days with the current diff --git a/SoObjects/SOGo/SOGoUserFolder.m b/SoObjects/SOGo/SOGoUserFolder.m index 0ed2c4664..e029e2c94 100644 --- a/SoObjects/SOGo/SOGoUserFolder.m +++ b/SoObjects/SOGo/SOGoUserFolder.m @@ -167,6 +167,9 @@ [currentDictionary setObject: [currentFolder displayName] forKey: @"displayName"]; [currentDictionary setObject: folderName forKey: @"name"]; + [currentDictionary setObject: [currentFolder + ownerInContext: context] + forKey: @"owner"]; [currentDictionary setObject: [currentFolder folderType] forKey: @"type"]; [folders addObject: currentDictionary];