Remove commas in names in recipient list string

Fixes #1225
This commit is contained in:
Buck Doyle 2014-03-23 15:02:21 -07:00
parent ccc1f5e9d6
commit cab4a06974

View File

@ -69,7 +69,7 @@ public class RecipientsPanel extends RelativeLayout {
}
public void addRecipient(String name, String number) {
if (name != null) recipientsText.append(name + "< " + number + ">, ");
if (name != null) recipientsText.append(name.replace(",", " ") + "< " + number + ">, ");
else recipientsText.append(number + ", ");
}