From 03aaceba49ebfed3205b7cfd7b176a23c609e37d Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Mon, 29 Mar 2010 20:07:08 +0000 Subject: [PATCH] See ChangeLog Monotone-Parent: 0c421ef29903ee5be58ddc992f2172bdda6a2b1d Monotone-Revision: 7b66e7e54c1c3722b44698bd915f6a240a127020 Monotone-Author: ludovic@Sophos.ca Monotone-Date: 2010-03-29T20:07:08 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 6 ++++++ SoObjects/Appointments/SOGoWebAppointmentFolder.m | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) 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"]) {