From 0cb23f07fa58b3cd142153e6db14a695f26c2725 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Thu, 14 Mar 2013 16:39:47 -0700 Subject: [PATCH] Fixed a stupid bug where messages wouldn't be sent because of ClientVersion --- .../com/todoroo/astrid/actfm/sync/ActFmSyncThread.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmSyncThread.java b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmSyncThread.java index 7e6ef352e..7233814ba 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmSyncThread.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmSyncThread.java @@ -321,7 +321,7 @@ public class ActFmSyncThread { continue; } - payload.put(0, getClientVersion()); + payload.put(getClientVersion()); try { JSONObject response = actFmInvoker.postSync(payload, entity, token);