From 56e64699d18f65a8bab9911477c169e03475e663 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Fri, 4 May 2012 14:35:24 -0700 Subject: [PATCH] Hopefully fixed a stack overflow problem --- astrid/src/com/todoroo/astrid/activity/TaskListActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astrid/src/com/todoroo/astrid/activity/TaskListActivity.java b/astrid/src/com/todoroo/astrid/activity/TaskListActivity.java index d4e5ce609..2dc0311cd 100644 --- a/astrid/src/com/todoroo/astrid/activity/TaskListActivity.java +++ b/astrid/src/com/todoroo/astrid/activity/TaskListActivity.java @@ -397,8 +397,8 @@ public class TaskListActivity extends AstridActivity implements MainMenuListener if (getIntent().hasExtra(NEW_LIST)) { Filter newList = getIntent().getParcelableExtra(NEW_LIST); - onFilterItemClicked(newList); getIntent().removeExtra(NEW_LIST); + onFilterItemClicked(newList); } if (getIntent().hasExtra(OPEN_TASK)) {