From 7d400bc60c4e700076eb2479066c024f499f9a70 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Wed, 30 Nov 2011 14:53:15 +0000 Subject: [PATCH] Monotone-Parent: ee9b43e5b99198d94635546e134d5ce8243594d1 Monotone-Revision: 1325c78fb76526668e09154a9f84cfeef227c789 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-11-30T14:53:15 --- ChangeLog | 5 +++++ SoObjects/SOGo/SOGoFolder.m | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index f935f7a0b..88f60e77d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2011-11-30 Wolfgang Sourdeau + * SoObjects/SOGo/SOGoFolder.m + (_expandPropertyResponse:forObject:): set the element in the 404 + bag only if the value is nil to avoid iCal complaining about lack + of support for sharing. + * SoObjects/Appointments/SOGoCalendarProxy.m (+webdavAclManager): overriden method. (-davGroupMemberSet, -setDavGroupMemberSet:): instantiate the diff --git a/SoObjects/SOGo/SOGoFolder.m b/SoObjects/SOGo/SOGoFolder.m index 0b70affea..26a82a32d 100644 --- a/SoObjects/SOGo/SOGoFolder.m +++ b/SoObjects/SOGo/SOGoFolder.m @@ -442,7 +442,7 @@ if (!tagNS) tagNS = XMLNS_WEBDAV; tagName = [childProperty attribute: @"name"]; - if ([childValue count]) + if (childValue) [properties200 addObject: davElementWithContent (tagName, tagNS, childValue)];