1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-23 18:02:15 -05:00

Issue 3104: Can't bcc to more than 1 address

This commit is contained in:
steiler 2011-03-12 01:16:43 +01:00 committed by Jesse Vincent
parent 6fa1f39fcc
commit e2a7a55cf3

View File

@ -504,7 +504,10 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
if (!ACTION_EDIT_DRAFT.equals(action)) {
String bccAddress = mAccount.getAlwaysBcc();
if ((bccAddress != null) && !("".equals(bccAddress))) {
addAddress(mBccView, new Address(bccAddress, ""));
String[] bccAddresses = bccAddress.split(",");
for (String oneBccAddress : bccAddresses) {
addAddress(mBccView, new Address(oneBccAddress, ""));
}
}
}