Skip to content

Commit

Permalink
duplicate bug fix - version 92.2.07
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolife999 committed Jan 12, 2023
1 parent 5a707ae commit b664fcd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

All notable changes to this project will be documented in this file.

## version-92.2.05 - 2023-01-12
## version-92.2.07 - 2023-01-12
- bug fix in duplicate detection

## version-92.2.06 - 2023-01-12
- gui refactor
- parallelism refactor
- bug fix in duplicate detection

## version-92.2.04 - 2022-11-21
- healthcheck quality refactor and add-on for web module
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -761,7 +761,7 @@ private GenericBean findDuplicates(GenericBean fileList) {

// récupérer les doublons pour mettre à jour le dispatcher
try {
ArrayList<String> listIdsourceDoublons = new GenericBean(UtilitaireDao.get("arc").executeRequest(this.connexion, new ArcPreparedStatementBuilder(requete))).mapContent().get("+ColumnEnum.ID_SOURCE.getColumnName()+");
ArrayList<String> listIdsourceDoublons = new GenericBean(UtilitaireDao.get("arc").executeRequest(this.connexion, new ArcPreparedStatementBuilder(requete))).mapContent().get(ColumnEnum.ID_SOURCE.getColumnName());

// on va parcourir la liste des fichiers
// si on retrouve l'id_source dans la liste, on le marque en erreur
Expand Down

0 comments on commit b664fcd

Please sign in to comment.