From 58933b153b5d8c43c6314244dfe99dd9bd7b4caa Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Wed, 9 Jun 2010 13:38:24 +0000 Subject: [PATCH] Monotone-Parent: 9b75ae77fd7075044530ae0ea50973abd83dd51c Monotone-Revision: 3ef5e91c07d076b9a4422a3de00743204ab19bdc Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-06-09T13:38:24 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 4 ++++ SoObjects/SOGo/SOGoUserFolder.m | 3 +++ 2 files changed, 7 insertions(+) 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];