mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-23 08:14:45 +00:00
Sanitize email name
This commit is contained in:
parent
9983addfdd
commit
ebf41cdc76
1 changed files with 7 additions and 4 deletions
|
@ -268,10 +268,13 @@ public class MessageHelper {
|
|||
String personal = a.getPersonal();
|
||||
if (TextUtils.isEmpty(personal))
|
||||
formatted.add(address.toString());
|
||||
else if (full)
|
||||
formatted.add(personal + " <" + a.getAddress() + ">");
|
||||
else
|
||||
formatted.add(personal);
|
||||
else {
|
||||
personal = personal.replaceAll("[\\,\\<\\>]", "");
|
||||
if (full)
|
||||
formatted.add(personal + " <" + a.getAddress() + ">");
|
||||
else
|
||||
formatted.add(personal);
|
||||
}
|
||||
} else
|
||||
formatted.add(address.toString());
|
||||
return TextUtils.join(", ", formatted);
|
||||
|
|
Loading…
Reference in a new issue