Remove commas in names in recipient list string

Fixes #1225
fork-5.53.8
Buck Doyle 2014-03-23 15:02:21 -07:00
rodzic ccc1f5e9d6
commit cab4a06974
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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 + ", ");
}