From 9c394ac8e617f254e004dbf892805584f0b5088c Mon Sep 17 00:00:00 2001 From: C Robert Date: Mon, 8 Jun 2009 15:31:17 +0000 Subject: [PATCH] Monotone-Parent: d6a619fbf875335523673d5bf683e34b3ac7887e Monotone-Revision: ebecad29c1790b7953cfe00229ae3666abb9f896 Monotone-Author: crobert@inverse.ca Monotone-Date: 2009-06-08T15:31:17 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 2 +- SoObjects/Appointments/SOGoAppointmentFolder.m | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index be959bda2..e0ea75311 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,7 @@ 2009-06-08 Cyril Robert * SoObjects/Appointments/SOGoAppointmentFolder.m: Added c_cycleenddate in - dav date limitation. + dav date limitation. Added c_cycleenddate = NULL 2009-06-05 Cyril Robert diff --git a/SoObjects/Appointments/SOGoAppointmentFolder.m b/SoObjects/Appointments/SOGoAppointmentFolder.m index 4273519a3..1ffc83ca7 100644 --- a/SoObjects/Appointments/SOGoAppointmentFolder.m +++ b/SoObjects/Appointments/SOGoAppointmentFolder.m @@ -1531,7 +1531,8 @@ firstInstanceCalendarDateRange: (NGCalendarDateRange *) fir if ([cycle intValue]) { cEndDate = [filter objectForKey: @"cycleenddate"]; - filterString = [NSString stringWithFormat: @"(c_cycleenddate >= %u)", + filterString = [NSString stringWithFormat: + @"(c_cycleenddate = NULL or c_cycleenddate >= %u)", (unsigned int) [cEndDate timeIntervalSince1970]]; [filters addObject: filterString]; }