branch develop updated (22bbe0d -> f72c5cb)
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 22bbe0d suppression test à ne pas lancer automatiquement new 0a3ef18 - upgrade pom version - correction rempalcement source de l'image refs #8912) new f72c5cb ajout du quote ou double quote en fonction de ce qui est dans le mail d'origine (refs #8912) The 2 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 f72c5cbb7d30c54d769682262796e9a4066f4700 Author: Kevin Morin <morin@codelutin.com> Date: Tue Jan 3 17:20:39 2017 +0100 ajout du quote ou double quote en fonction de ce qui est dans le mail d'origine (refs #8912) commit 0a3ef181c380d10a7b28b3fb1ff789e6bcba3d9f Author: Kevin Morin <morin@codelutin.com> Date: Tue Jan 3 16:59:46 2017 +0100 - upgrade pom version - correction rempalcement source de l'image refs #8912) Summary of changes: .../com/franciaflex/faxtomail/services/FaxToMailServiceUtils.java | 8 ++++---- pom.xml | 2 +- 2 files changed, 5 insertions(+), 5 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 0a3ef181c380d10a7b28b3fb1ff789e6bcba3d9f Author: Kevin Morin <morin@codelutin.com> Date: Tue Jan 3 16:59:46 2017 +0100 - upgrade pom version - correction rempalcement source de l'image refs #8912) --- .../java/com/franciaflex/faxtomail/services/FaxToMailServiceUtils.java | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/FaxToMailServiceUtils.java b/faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/FaxToMailServiceUtils.java index 9568b55..1c035ba 100644 --- a/faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/FaxToMailServiceUtils.java +++ b/faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/FaxToMailServiceUtils.java @@ -151,7 +151,7 @@ public class FaxToMailServiceUtils { correctImgUrl = ge.isHeadlessInstance() ? "" : defaultImage; } - imgSrcMatcher.appendReplacement(emailContentBuffer, correctImgUrl); + imgSrcMatcher.appendReplacement(emailContentBuffer, "src='" + correctImgUrl + "'"); } imgSrcMatcher.appendTail(emailContentBuffer); return emailContentBuffer.toString(); diff --git a/pom.xml b/pom.xml index 1c5ad2e..78a8d6b 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ <parent> <groupId>org.nuiton</groupId> <artifactId>codelutinpom</artifactId> - <version>10</version> + <version>10.5</version> </parent> <groupId>com.franciaflex</groupId> -- 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 f72c5cbb7d30c54d769682262796e9a4066f4700 Author: Kevin Morin <morin@codelutin.com> Date: Tue Jan 3 17:20:39 2017 +0100 ajout du quote ou double quote en fonction de ce qui est dans le mail d'origine (refs #8912) --- .../com/franciaflex/faxtomail/services/FaxToMailServiceUtils.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/FaxToMailServiceUtils.java b/faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/FaxToMailServiceUtils.java index 1c035ba..636e576 100644 --- a/faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/FaxToMailServiceUtils.java +++ b/faxtomail-service/src/main/java/com/franciaflex/faxtomail/services/FaxToMailServiceUtils.java @@ -64,7 +64,7 @@ public class FaxToMailServiceUtils { public static String addFaxDomainToFaxNumber(String faxNumber, MailFolder folder) { while (!folder.isUseCurrentLevelFaxDomain() - && folder.getParent() != null) { + && folder.getParent() != null) { folder = folder.getParent(); } int endIndex = faxNumber.indexOf('@'); @@ -90,8 +90,8 @@ public class FaxToMailServiceUtils { /** * Return true if given collection is not null and contains requested value. - * - * @param coll collection + * + * @param coll collection * @param value value * @return true if set contains value */ @@ -151,7 +151,7 @@ public class FaxToMailServiceUtils { correctImgUrl = ge.isHeadlessInstance() ? "" : defaultImage; } - imgSrcMatcher.appendReplacement(emailContentBuffer, "src='" + correctImgUrl + "'"); + imgSrcMatcher.appendReplacement(emailContentBuffer, "src=" + imgSrcMatcher.group(1) + correctImgUrl + imgSrcMatcher.group(3)); } imgSrcMatcher.appendTail(emailContentBuffer); return emailContentBuffer.toString(); -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm