Fixed a bug where list members could be overwritten on first save

pull/14/head
Sam Bosley 13 years ago
parent 7e378078a9
commit 7ac45fde56

@ -163,13 +163,12 @@ public class TagSettingsActivity extends Activity {
}
}
if(newName.length() > 0 && oldName.length() == 0) {
tagDataService.save(tagData);
//setUpNewTag(newName);
}
JSONArray members = tagMembers.toJSONArray();
if(members.length() > 0 && !actFmPreferenceService.isLoggedIn()) {
if(newName.length() > 0 && oldName.length() == 0) {
tagDataService.save(tagData);
}
startActivityForResult(new Intent(this, ActFmLoginActivity.class),
REQUEST_ACTFM_LOGIN);
return;

Loading…
Cancel
Save