Bug 1349021 - CC addresses configured in account not working due to typo in MsgComposeCommands.js. r+a=jorgk
This commit is contained in:
Родитель
0253e0c586
Коммит
cad22ba32f
|
@ -4597,7 +4597,7 @@ function LoadIdentity(startup)
|
|||
if (newCc) {
|
||||
// Ensure none of the Ccs are already in To.
|
||||
let cc2 = msgCompFields.splitRecipients(newCc, true, {});
|
||||
newCC = cc2.filter(x => !toAddrs.has(x)).join(", ");
|
||||
newCc = cc2.filter(x => !toAddrs.has(x)).join(", ");
|
||||
awAddRecipients(msgCompFields, "addr_cc", newCc);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2637,7 +2637,7 @@ function LoadIdentity(startup)
|
|||
if (newCc) {
|
||||
// Ensure none of the Ccs are already in To.
|
||||
let cc2 = msgCompFields.splitRecipients(newCc, true, {});
|
||||
newCC = cc2.filter(x => !toAddrs.has(x)).join(", ");
|
||||
newCc = cc2.filter(x => !toAddrs.has(x)).join(", ");
|
||||
awAddRecipients(msgCompFields, "addr_cc", newCc);
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче