From 3d82a312fc185fb3f68b8f7ce1b4a0782018cde7 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Thu, 30 Aug 2012 16:13:04 -0700 Subject: [PATCH] In tag_save, only report ab_variants if members exist --- .../com/todoroo/astrid/actfm/sync/ActFmSyncService.java | 3 ++- 1 file changed, 2 insertions(+), 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 bb664287a..27bfa426a 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmSyncService.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmSyncService.java @@ -597,9 +597,10 @@ public final class ActFmSyncService { } } params.add(array); + if (members.length() > 0) + addAbTestEventInfo(params); } - addAbTestEventInfo(params); } catch (JSONException e) { throw new RuntimeException(e);