Skip to content

Commit

Permalink
Fix : Ajout cas d'un message d'information supplémentaire à un messag…
Browse files Browse the repository at this point in the history
…e d'erreur dans le calcul du nombre de résultat d'une recherche
  • Loading branch information
pierre-maraval committed Dec 3, 2024
1 parent f74f1d5 commit 97051b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/fr/abes/cbs/utilitaire/Utilitaire.java
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ public static String recupEntre(final String ligne, final String tag, final Stri
* @return nombre de notices retourné par commande CHE
*/
public static Integer getNbNoticesFromChe(String resu) {
if (resu.startsWith("M02"))
if (resu.startsWith("M02") || resu.startsWith("M03"))
return 0;
return Integer.parseInt(Utilitaire.recupEntre(resu, Constants.STR_1D + "VSZ", Constants.STR_1D));
}
Expand Down

0 comments on commit 97051b4

Please sign in to comment.