Skip to content

Commit

Permalink
Remplacement des guillemets double pour les sujets
Browse files Browse the repository at this point in the history
  • Loading branch information
julg committed Dec 3, 2024
1 parent d6e6a04 commit ac3ddd7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -600,9 +600,9 @@ public TheseMappee(Mets mets, List<Set> oaiSets, int idDoc) {

if (s != null && s.getLang() != null) {
sujetDTO.setLangue(s.getLang());
sujetDTO.setLibelle(s.getContent());
sujetDTO.setLibelle(s.getContent().replace("\"", "''"));
sujets.add(sujetDTO);
sujetsLibelle.add(s.getContent());
sujetsLibelle.add(s.getContent().replace("\"", "''"));
}
}
} catch (NullPointerException e) {
Expand Down

0 comments on commit ac3ddd7

Please sign in to comment.