mirror of
https://github.com/moparisthebest/k-9
synced 2025-02-15 22:50:16 -05:00
Fixed issue 589
Thanks danapple0 for pointing the bug in previous fix (r912)
This commit is contained in:
parent
38741ab766
commit
67437ad0d9
@ -442,10 +442,8 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
|
||||
addressList = "";
|
||||
if (extraEmail != null) {
|
||||
arraySize = extraEmail.length;
|
||||
if (arraySize > 1) {
|
||||
for (i=0; i < arraySize; i++) {
|
||||
addressList += extraEmail[i]+", ";
|
||||
}
|
||||
for (i=0; i < arraySize; i++) {
|
||||
addressList += extraEmail[i]+", ";
|
||||
}
|
||||
}
|
||||
mToView.setText(addressList);
|
||||
@ -453,10 +451,8 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
|
||||
addressList = "";
|
||||
if (extraCc != null) {
|
||||
arraySize = extraCc.length;
|
||||
if (arraySize > 1) {
|
||||
for (i=0; i < arraySize; i++) {
|
||||
addressList += extraCc[i]+", ";
|
||||
}
|
||||
for (i=0; i < arraySize; i++) {
|
||||
addressList += extraCc[i]+", ";
|
||||
}
|
||||
}
|
||||
mCcView.setText(addressList);
|
||||
@ -464,10 +460,8 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
|
||||
addressList = "";
|
||||
if (extraBcc != null) {
|
||||
arraySize = extraBcc.length;
|
||||
if (arraySize > 1) {
|
||||
for (i=0; i < arraySize; i++) {
|
||||
addressList += extraBcc[i]+", ";
|
||||
}
|
||||
for (i=0; i < arraySize; i++) {
|
||||
addressList += extraBcc[i]+", ";
|
||||
}
|
||||
}
|
||||
mBccView.setText(addressList);
|
||||
|
Loading…
Reference in New Issue
Block a user