diff --git a/ChangeLog b/ChangeLog index 297b0a02b..59192cfe1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2010-03-29 Ludovic Marcotte + + SoObjects/Appointments/SOGoWebAppointmentFolder.m + We no longer use the NSData's method to load + the data as GNUstep will be caching it. + 2010-03-28 Ludovic Marcotte * Translated to French all the ppolicy stuff diff --git a/SoObjects/Appointments/SOGoWebAppointmentFolder.m b/SoObjects/Appointments/SOGoWebAppointmentFolder.m index 2dbfe8380..c504dd281 100644 --- a/SoObjects/Appointments/SOGoWebAppointmentFolder.m +++ b/SoObjects/Appointments/SOGoWebAppointmentFolder.m @@ -47,7 +47,7 @@ if (url) { - data = [NSData dataWithContentsOfURL: url]; + data = [url resourceDataUsingCache: NO]; if (!data && [[location lowercaseString] hasPrefix: @"https"]) {