branch develop updated (e943e887 -> c2fc48e8)
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 e943e887 Refs #10227 : Ajouter une vérification du contenu du mail pour forcer l'éditeur html si besoin new c2fc48e8 fixes #10280 - Accès recherche 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 c2fc48e848d74fe8ed48f6d61d543a59b22d49ef Author: jcouteau <couteau@codelutin.com> Date: Thu Mar 28 10:49:04 2019 +0100 fixes #10280 - Accès recherche Summary of changes: .../franciaflex/faxtomail/persistence/entities/ClientTopiaDao.java | 4 +++- faxtomail-persistence/src/main/resources/faxToMail.properties | 2 +- 2 files changed, 4 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 c2fc48e848d74fe8ed48f6d61d543a59b22d49ef Author: jcouteau <couteau@codelutin.com> Date: Thu Mar 28 10:49:04 2019 +0100 fixes #10280 - Accès recherche --- .../franciaflex/faxtomail/persistence/entities/ClientTopiaDao.java | 4 +++- faxtomail-persistence/src/main/resources/faxToMail.properties | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/faxtomail-persistence/src/main/java/com/franciaflex/faxtomail/persistence/entities/ClientTopiaDao.java b/faxtomail-persistence/src/main/java/com/franciaflex/faxtomail/persistence/entities/ClientTopiaDao.java index 2fff4f96..fa142b96 100644 --- a/faxtomail-persistence/src/main/java/com/franciaflex/faxtomail/persistence/entities/ClientTopiaDao.java +++ b/faxtomail-persistence/src/main/java/com/franciaflex/faxtomail/persistence/entities/ClientTopiaDao.java @@ -88,7 +88,9 @@ public class ClientTopiaDao extends AbstractClientTopiaDao<Client> { companyValuesBuilder.append(company).append(","); } - companyValuesBuilder.deleteCharAt(companyValuesBuilder.length()-1); + if (companyValuesBuilder.length()>0) { + companyValuesBuilder.deleteCharAt(companyValuesBuilder.length() - 1); + } Map<String, Object> args = new HashMap<>(); diff --git a/faxtomail-persistence/src/main/resources/faxToMail.properties b/faxtomail-persistence/src/main/resources/faxToMail.properties index 237548ea..7d7a6d44 100644 --- a/faxtomail-persistence/src/main/resources/faxToMail.properties +++ b/faxtomail-persistence/src/main/resources/faxToMail.properties @@ -25,7 +25,7 @@ hibernate.dialect=org.hibernate.dialect.H2Dialect hibernate.connection.driver_class=org.h2.Driver #hibernate.connection.url=jdbc:h2:file:/tmp/faxtomail/h2data;MODE=MSSQLServer;AUTO_SERVER=TRUE -hibernate.connection.url=jdbc:h2:file:/opt/data/ftm/faxtomail-2/h2data;MODE=MSSQLServer;AUTO_SERVER=TRUE;CACHE_SIZE=8192 +hibernate.connection.url=jdbc:h2:file:/opt/databases/ftm/h2data;MODE=MSSQLServer;AUTO_SERVER=TRUE;CACHE_SIZE=8192 hibernate.connection.username=sa hibernate.connection.password= -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm