summaryrefslogtreecommitdiff
path: root/calendar/backends
diff options
context:
space:
mode:
authorJP Rosevear <jpr@novell.com>2004-05-28 14:06:45 +0000
committerJP Rosevear <jpr@src.gnome.org>2004-05-28 14:06:45 +0000
commite5b020ad14d96d99556d700a9e02a05bb1b04fc5 (patch)
tree5a7713f2e8e136455247352db58785a9d93584f2 /calendar/backends
parent48d51993adf0e9e8e37f0380f92436e5e6529cd7 (diff)
downloadevolution-data-server-e5b020ad14d96d99556d700a9e02a05bb1b04fc5.tar.gz
Fixes #55524
2004-05-28 JP Rosevear <jpr@novell.com> Fixes #55524 * backends/file/e-cal-backend-file.c (e_cal_backend_file_receive_objects): don't sanitize the component, we already check for valid timezones and the zones aren't merged in yet anyhow
Diffstat (limited to 'calendar/backends')
-rw-r--r--calendar/backends/file/e-cal-backend-file.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/calendar/backends/file/e-cal-backend-file.c b/calendar/backends/file/e-cal-backend-file.c
index fed09e807..f7408cd05 100644
--- a/calendar/backends/file/e-cal-backend-file.c
+++ b/calendar/backends/file/e-cal-backend-file.c
@@ -2119,10 +2119,6 @@ e_cal_backend_file_receive_objects (ECalBackendSync *backend, EDataCal *cal, con
e_cal_component_set_created (comp, &current);
e_cal_component_set_last_modified (comp, &current);
- /* sanitize the component*/
- /* XFFIXME We already checked for the timezones above */
- sanitize_component (cbfile, comp);
-
e_cal_component_get_uid (comp, &uid);
rid = e_cal_component_get_recurid_as_string (comp);
@@ -2150,6 +2146,8 @@ e_cal_backend_file_receive_objects (ECalBackendSync *backend, EDataCal *cal, con
break;
case ICAL_METHOD_ADD:
/* FIXME This should be doable once all the recurid stuff is done */
+ status = GNOME_Evolution_Calendar_UnsupportedMethod;
+ goto error;
break;
case ICAL_METHOD_COUNTER:
status = GNOME_Evolution_Calendar_UnsupportedMethod;