Skip to content

Commit

Permalink
Merge pull request #97 from abes-esr/test
Browse files Browse the repository at this point in the history
FIX requete de recherche mots cles controles avec caracteres specifiques
  • Loading branch information
julg authored Nov 25, 2024
2 parents 684f88a + 37fb6b2 commit fd69b87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ private Map<String, List<SujetsToMap>> formatKeywords(These these) {
for (SujetsRameau s : these.getSujetsRameau()) {
List<SujetsToMap> l = new ArrayList<>();
if (mapSujets.get("fr") != null) l = mapSujets.get("fr");
l.add(0, new SujetsToMap(s.getLibelle(), SujetsToMap.Type.sujetsRameau, s.getLibelle() + " ET " + s.getPpn()));
l.add(0, new SujetsToMap(s.getLibelle(), SujetsToMap.Type.sujetsRameau, "\"" + s.getLibelle() + "\" ET " + s.getPpn()));
mapSujets.put("fr", l);
}

Expand Down

0 comments on commit fd69b87

Please # to comment.