Use semicolon as display address separator

This commit is contained in:
M66B 2021-03-06 14:32:47 +01:00
parent fe3735920d
commit 00edea51f2
1 changed files with 1 additions and 1 deletions

View File

@ -1532,7 +1532,7 @@ public class MessageHelper {
} else } else
formatted.add(addresses[i].toString()); formatted.add(addresses[i].toString());
} }
return TextUtils.join(", ", formatted); return TextUtils.join(compose ? ", " : "; ", formatted);
} }
static String punyCode(String email) { static String punyCode(String email) {