From e9e5a27be6a8d0ce44cf12204157c50ed8c01fdb Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Tue, 15 Jan 2013 17:12:09 -0800 Subject: [PATCH] Don't fetch comments for featured lists --- .../com/todoroo/astrid/actfm/sync/ActFmSyncService.java | 5 +++++ 1 file changed, 5 insertions(+) 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 e9ca994cc..cf8121eca 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmSyncService.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/sync/ActFmSyncService.java @@ -1166,6 +1166,11 @@ public final class ActFmSyncService { * @param done */ public void fetchUpdatesForTag(final TagData tagData, final boolean manual, Runnable done) { + if (tagData.getFlag(TagData.FLAGS, TagData.FLAG_FEATURED)) { + if (done != null) + done.run(); + return; + } invokeFetchList("activity", manual, null, new UpdateListItemProcessor(), done, "updates:" + tagData.getId(), "tag_id", tagData.getValue(TagData.REMOTE_ID));