From 61d080bcc42af5e2221f08fa801cf864d4ed05c3 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Mon, 12 Nov 2012 15:57:44 -0800 Subject: [PATCH] Fetching list order requires token --- .../com/todoroo/astrid/actfm/sync/ActFmSyncService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmSyncService.java b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmSyncService.java index 6ac87057e..217ac6d01 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmSyncService.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmSyncService.java @@ -626,7 +626,7 @@ public final class ActFmSyncService { return; try { - JSONObject result = actFmInvoker.invoke("list_order", "tag_id", tagData.getValue(TagData.REMOTE_ID)); + JSONObject result = actFmInvoker.invoke("list_order", "tag_id", tagData.getValue(TagData.REMOTE_ID), "token", token); JSONArray ordering = result.optJSONArray("order"); if (ordering == null) return;