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]; }