mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-20 13:17:08 +00:00
Use semicolon as display address separator
This commit is contained in:
parent
fe3735920d
commit
00edea51f2
1 changed files with 1 additions and 1 deletions
|
@ -1532,7 +1532,7 @@ public class MessageHelper {
|
|||
} else
|
||||
formatted.add(addresses[i].toString());
|
||||
}
|
||||
return TextUtils.join(", ", formatted);
|
||||
return TextUtils.join(compose ? ", " : "; ", formatted);
|
||||
}
|
||||
|
||||
static String punyCode(String email) {
|
||||
|
|
Loading…
Reference in a new issue