From 22fbb411dd940a6f4138ceb41761c6820f3e257e Mon Sep 17 00:00:00 2001 From: Alex Baker Date: Fri, 22 Aug 2014 16:04:02 -0500 Subject: [PATCH] Fixed task deletion --- .../src/main/java/com/todoroo/astrid/actfm/TagViewFragment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astrid/src/main/java/com/todoroo/astrid/actfm/TagViewFragment.java b/astrid/src/main/java/com/todoroo/astrid/actfm/TagViewFragment.java index d454ccf59..12be7f00f 100644 --- a/astrid/src/main/java/com/todoroo/astrid/actfm/TagViewFragment.java +++ b/astrid/src/main/java/com/todoroo/astrid/actfm/TagViewFragment.java @@ -113,7 +113,7 @@ public class TagViewFragment extends TaskListFragment { return; } - TagData tagData = RemoteModel.isUuidEmpty(uuid) + tagData = RemoteModel.isUuidEmpty(uuid) ? tagDataDao.getTagByName(tag, TagData.PROPERTIES) : tagDataDao.getByUuid(uuid, TagData.PROPERTIES);