fix: Avoid add "null" to cc in communication in timeline (#25092)
* Avoid add "null" to cc * chore: extend fix to BCC --------- Co-authored-by: Ankush Menat <ankushmenat@gmail.com>
This commit is contained in:
commit
f086b7febd
1 changed files with 2 additions and 2 deletions
|
|
@ -575,8 +575,8 @@ class FormTimeline extends BaseTimeline {
|
|||
}
|
||||
if (reply_all) {
|
||||
// if reply_all then add cc and bcc as well.
|
||||
args.cc += communication_doc.cc;
|
||||
args.bcc = communication_doc.bcc;
|
||||
args.cc += cstr(communication_doc.cc);
|
||||
args.bcc = cstr(communication_doc.bcc);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue