1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-25 15:32:52 +00:00

Revert "Prevent extra commas"

This reverts commit e8aef9ae68.
This commit is contained in:
M66B 2021-12-21 08:41:37 +01:00
parent e8aef9ae68
commit 7deb0d1283

View file

@ -2066,9 +2066,7 @@ public class MessageHelper {
static String formatAddressesCompose(Address[] addresses) {
String result = formatAddresses(addresses, true, true);
if (result != null && result.endsWith(","))
result += " ";
else if (!TextUtils.isEmpty(result))
if (!TextUtils.isEmpty(result))
result += ", ";
return result;
}