fixed bug not allowing to cc or bcc anyone in EmailNotification

git-svn-id: https://svn.research-infrastructures.eu/d4science/gcube/trunk/portal/portal-manager@148669 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Massimiliano Assante 2017-05-15 12:53:51 +00:00
parent 18ee620871
commit 57f1855a60
1 changed files with 2 additions and 2 deletions

View File

@ -134,8 +134,8 @@ public class EmailNotification {
this.emailBodyTextPlain = (builder.bodyTextPlain != null) ? new StringBuffer(builder.bodyTextPlain).append(getWarningLegalText(true)) : null;
}
this.emailRecipientsInCC = new ArrayList<InternetAddress>();
this.emailRecipientsInBCC = new ArrayList<InternetAddress>();
this.emailRecipientsInCC = builder.emailRecipientsInCC;
this.emailRecipientsInBCC = builder.emailRecipientsInBCC;
}
/**