diff --git a/astrid/src/com/todoroo/astrid/activity/TaskListFragment.java b/astrid/src/com/todoroo/astrid/activity/TaskListFragment.java index 956a0852e..f93276605 100644 --- a/astrid/src/com/todoroo/astrid/activity/TaskListFragment.java +++ b/astrid/src/com/todoroo/astrid/activity/TaskListFragment.java @@ -1063,7 +1063,7 @@ public class TaskListFragment extends SherlockListFragment implements OnSortSele public void reconstructCursor() { TodorooCursor cursor = constructCursor(); - if (cursor == null) + if (cursor == null || taskAdapter == null) return; taskAdapter.changeCursor(cursor); }