From 766ac6a8c07deabb45a65e644b0840a643c8f052 Mon Sep 17 00:00:00 2001 From: Tim Su Date: Thu, 5 May 2011 13:58:12 -0700 Subject: [PATCH] Fix for tag control set always reporting tasks have changed when editing. Should fix (or at least help with) story #10759337 in pivotal --- astrid/src/com/todoroo/astrid/service/MetadataService.java | 1 + 1 file changed, 1 insertion(+) diff --git a/astrid/src/com/todoroo/astrid/service/MetadataService.java b/astrid/src/com/todoroo/astrid/service/MetadataService.java index 8f58db45d..52beaaf5e 100644 --- a/astrid/src/com/todoroo/astrid/service/MetadataService.java +++ b/astrid/src/com/todoroo/astrid/service/MetadataService.java @@ -114,6 +114,7 @@ public class MetadataService { // clear item id when matching with incoming values item.clearValue(Metadata.ID); + item.clearValue(Metadata.CREATION_DATE); ContentValues itemMergedValues = item.getMergedValues(); if(newMetadataValues.contains(itemMergedValues)) { newMetadataValues.remove(itemMergedValues);