Fixed a bug that was preventing existing shared users from saving in shared lists

pull/14/head
Sam Bosley 14 years ago
parent 0b34b8c8ae
commit 6550a4fd88

@ -185,7 +185,7 @@ public class PeopleContainer extends LinearLayout {
if(text.length() == 0)
continue;
if(text.indexOf('@') == -1)
if(text.indexOf('@') == -1 && textView.isEnabled())
throw new ParseSharedException(textView,
activity.getString(R.string.actfm_EPA_invalid_email, text));
if (peopleAsJSON) {

Loading…
Cancel
Save