diff --git a/astrid/plugin-src/com/todoroo/astrid/actfm/TagViewActivity.java b/astrid/plugin-src/com/todoroo/astrid/actfm/TagViewActivity.java index 883944867..d86cd3d6c 100644 --- a/astrid/plugin-src/com/todoroo/astrid/actfm/TagViewActivity.java +++ b/astrid/plugin-src/com/todoroo/astrid/actfm/TagViewActivity.java @@ -488,16 +488,15 @@ public class TagViewActivity extends TaskListActivity implements OnTabChangeList actFmSyncService.fetchTag(tagData); if(noRemoteId && tagData.getValue(TagData.REMOTE_ID) > 0) { refreshData(manual, true); - - runOnUiThread(new Runnable() { - @Override - public void run() { - refreshUpdatesList(); - refreshSettingsPage(); - } - }); } + runOnUiThread(new Runnable() { + @Override + public void run() { + refreshSettingsPage(); + } + }); + if(!oldName.equals(tagData.getValue(TagData.NAME))) { TagService.getInstance().rename(oldName, tagData.getValue(TagData.NAME));