1
0
Fork 0
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:
M66B 2021-03-06 14:32:47 +01:00
parent fe3735920d
commit 00edea51f2

View file

@ -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) {