summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2010-03-31 00:45:26 +0100
committerPhilip Withnall <philip@tecnocode.co.uk>2010-03-31 00:45:26 +0100
commitce3e887ec2f1a4a5f10bb9276d25eff2dd057164 (patch)
treed074cc2cffaa704639362d4b42f0b1a7b5b5ce32
parenta0742d438ac0cca989e3eb4756d9985596e5479a (diff)
downloadlibgdata-ce3e887ec2f1a4a5f10bb9276d25eff2dd057164.tar.gz
[calendar] Add missing parsing fallback
-rw-r--r--gdata/services/calendar/gdata-calendar-feed.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/gdata/services/calendar/gdata-calendar-feed.c b/gdata/services/calendar/gdata-calendar-feed.c
index 9cd82ff8..634f848f 100644
--- a/gdata/services/calendar/gdata-calendar-feed.c
+++ b/gdata/services/calendar/gdata-calendar-feed.c
@@ -149,6 +149,8 @@ parse_xml (GDataParsable *parsable, xmlDoc *doc, xmlNode *node, gpointer user_da
return gdata_parser_error_required_property_missing (node, "value", error);
self->priv->times_cleaned = strtoul ((gchar*) times_cleaned, NULL, 10);
xmlFree (times_cleaned);
+ } else {
+ return GDATA_PARSABLE_CLASS (gdata_calendar_feed_parent_class)->parse_xml (parsable, doc, node, user_data, error);
}
return TRUE;