Don't fetch comments for featured lists

pull/14/head
Sam Bosley 13 years ago
parent ef986333fc
commit e9e5a27be6

@ -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));

Loading…
Cancel
Save