Use semicolon as display address separator

pull/194/head
M66B 5 years ago
parent fe3735920d
commit 00edea51f2

@ -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…
Cancel
Save