diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/TagViewFragment.java b/astrid/plugin-src/com/todoroo/astrid/actfm/TagViewFragment.java index 98c23bf5a..910bb2c7b 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/TagViewFragment.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/TagViewFragment.java @@ -329,7 +329,7 @@ public class TagViewFragment extends TaskListFragment { /** refresh the list with latest data from the web */ private void refreshData() { - if (actFmPreferenceService.isLoggedIn()) { + if (actFmPreferenceService.isLoggedIn() && tagData != null && !RemoteModel.isUuidEmpty(tagData.getUuid())) { ((TextView)taskListView.findViewById(android.R.id.empty)).setText(R.string.DLG_loading); Runnable callback = new Runnable() {