branch develop updated (4cd5afa6 -> 227eb0f6)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git from 4cd5afa6 [gitflow-maven-plugin]Update for next development version new 227eb0f6 fixes #11282 : les adresses de cc sont séparées par des virgules dans le répondre à tous The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 227eb0f6060ab084b7f50d74d2d30c066dca8e5a Author: jcouteau <couteau@codelutin.com> Date: Wed Apr 7 15:01:47 2021 +0200 fixes #11282 : les adresses de cc sont séparées par des virgules dans le répondre à tous Summary of changes: .../faxtomail/ui/swing/content/demande/DemandeUIModel.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository faxtomail. See https://gitlab.nuiton.org/codelutin/faxtomail.git commit 227eb0f6060ab084b7f50d74d2d30c066dca8e5a Author: jcouteau <couteau@codelutin.com> Date: Wed Apr 7 15:01:47 2021 +0200 fixes #11282 : les adresses de cc sont séparées par des virgules dans le répondre à tous --- .../faxtomail/ui/swing/content/demande/DemandeUIModel.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/DemandeUIModel.java b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/DemandeUIModel.java index 55cc42d8..0a71ff9b 100644 --- a/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/DemandeUIModel.java +++ b/faxtomail-ui-swing/src/main/java/com/franciaflex/faxtomail/ui/swing/content/demande/DemandeUIModel.java @@ -345,14 +345,14 @@ public class DemandeUIModel extends AbstractFaxToMailBeanUIModel<Email, DemandeU if (toRecipients == null) { decomposeEmail(); } - return StringUtils.join(toRecipients, ", "); + return StringUtils.join(toRecipients, "; "); } public String getCcRecipients() { if (ccRecipients == null) { decomposeEmail(); } - return StringUtils.join(ccRecipients, ", "); + return StringUtils.join(ccRecipients, "; "); } public List<String> getPlainContent() { -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm