summaryrefslogtreecommitdiff
path: root/gdata/services/tasks/gdata-tasks-query.c
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2017-08-23 10:26:15 +0100
committerPhilip Withnall <withnall@endlessm.com>2017-08-23 10:30:20 +0100
commit0851328783fda2afccc35a034301d54a2a00b36b (patch)
treec673f9776d1fd92ca0151a6ad47193d3695cac97 /gdata/services/tasks/gdata-tasks-query.c
parent388eec9d6235e53c70ff41c5a8aaa63357caf0d1 (diff)
downloadlibgdata-0851328783fda2afccc35a034301d54a2a00b36b.tar.gz
Revert "tasks: Re-add ISO 8601 formatting workaround for Tasks service"
This reverts commit d10155034b0fa2e43e2889e55157798ce073f807. It looks like Google may now have fixed the timezone formatting bug in their Tasks services (they had previously fixed it in their other services; see bug #780067). https://bugzilla.gnome.org/show_bug.cgi?id=785952
Diffstat (limited to 'gdata/services/tasks/gdata-tasks-query.c')
-rw-r--r--gdata/services/tasks/gdata-tasks-query.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gdata/services/tasks/gdata-tasks-query.c b/gdata/services/tasks/gdata-tasks-query.c
index 80ff7022..627dc862 100644
--- a/gdata/services/tasks/gdata-tasks-query.c
+++ b/gdata/services/tasks/gdata-tasks-query.c
@@ -288,7 +288,7 @@ get_query_uri (GDataQuery *self, const gchar *feed_uri, GString *query_uri, gboo
APPEND_SEP
g_string_append (query_uri, "updatedMin=");
- updated_min = gdata_parser_int64_to_iso8601_numeric_timezone (gdata_query_get_updated_min (GDATA_QUERY (self)));
+ updated_min = gdata_parser_int64_to_iso8601 (gdata_query_get_updated_min (GDATA_QUERY (self)));
g_string_append (query_uri, updated_min);
g_free (updated_min);
}
@@ -298,7 +298,7 @@ get_query_uri (GDataQuery *self, const gchar *feed_uri, GString *query_uri, gboo
APPEND_SEP
g_string_append (query_uri, "completedMin=");
- completed_min = gdata_parser_int64_to_iso8601_numeric_timezone (priv->completed_min);
+ completed_min = gdata_parser_int64_to_iso8601 (priv->completed_min);
g_string_append (query_uri, completed_min);
g_free (completed_min);
}
@@ -308,7 +308,7 @@ get_query_uri (GDataQuery *self, const gchar *feed_uri, GString *query_uri, gboo
APPEND_SEP
g_string_append (query_uri, "completedMax=");
- completed_max = gdata_parser_int64_to_iso8601_numeric_timezone (priv->completed_max);
+ completed_max = gdata_parser_int64_to_iso8601 (priv->completed_max);
g_string_append (query_uri, completed_max);
g_free (completed_max);
}
@@ -318,7 +318,7 @@ get_query_uri (GDataQuery *self, const gchar *feed_uri, GString *query_uri, gboo
APPEND_SEP
g_string_append (query_uri, "dueMin=");
- due_min = gdata_parser_int64_to_iso8601_numeric_timezone (priv->due_min);
+ due_min = gdata_parser_int64_to_iso8601 (priv->due_min);
g_string_append (query_uri, due_min);
g_free (due_min);
}
@@ -328,7 +328,7 @@ get_query_uri (GDataQuery *self, const gchar *feed_uri, GString *query_uri, gboo
APPEND_SEP
g_string_append (query_uri, "dueMax=");
- due_max = gdata_parser_int64_to_iso8601_numeric_timezone (priv->due_max);
+ due_max = gdata_parser_int64_to_iso8601 (priv->due_max);
g_string_append (query_uri, due_max);
g_free (due_max);
}