From f3fecbe08b4feff19b9fdd002e5539ed8f801e03 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Tue, 11 Dec 2012 15:13:39 -0800 Subject: [PATCH] Fixed stupid logic typo --- .../plugin-src/com/todoroo/astrid/actfm/sync/ActFmInvoker.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmInvoker.java b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmInvoker.java index 790d42d11..02aef6b9d 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmInvoker.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmInvoker.java @@ -210,7 +210,7 @@ public class ActFmInvoker { String url = URL; boolean customApi = false; - if (api == null) { + if (api != null) { customApi = true; url = url.replace("api", api); }