From 29e239bba010aaebbd605257446d91ed308b169b Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Wed, 14 Oct 2009 16:47:15 +0000 Subject: [PATCH] See ChangeLog Monotone-Parent: dfb0905a14bcb6b22ea2b02eb9910b1e098aeaa9 Monotone-Revision: 78eddfb311776e904d4f6650bcc5e2930af4519a Monotone-Author: ludovic@Sophos.ca Monotone-Date: 2009-10-14T16:47:15 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 6 ++++++ UI/Scheduler/UIxCalMainActions.m | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 75b0f0fc3..5a5eb0713 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-10-14 Ludovic Marcotte + + * UI/Scheduler/UIxCalMainActions.m + We store the string value of the URL in our + prefs, not the NSURL instance. + 2009-10-13 Ludovic Marcotte * SoObjects/SOGo/NSDictionary+BSJSONAdditions.m diff --git a/UI/Scheduler/UIxCalMainActions.m b/UI/Scheduler/UIxCalMainActions.m index 6cee2a8f6..965831bb3 100644 --- a/UI/Scheduler/UIxCalMainActions.m +++ b/UI/Scheduler/UIxCalMainActions.m @@ -118,7 +118,7 @@ webCalendars = [NSMutableDictionary dictionary]; [calSettings setObject: webCalendars forKey: @"WebCalendars"]; } - [webCalendars setObject: calendarURL forKey: calendarName]; + [webCalendars setObject: [calendarURL absoluteString] forKey: calendarName]; [settings synchronize]; }