Skip to content

Commit

Permalink
FIX : Appel doi avec uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
pierre-maraval committed Jul 12, 2024
1 parent cdbc51a commit a0365ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/fr/abes/bestppn/service/WsService.java
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public ResultWsSudocDto callDat2Ppn(String date, String author, String title, St

public ResultWsSudocDto callDoi2Ppn(String doi, @Nullable String provider) throws JsonProcessingException, IllegalDoiException {
Map<String, String> params = new HashMap<>();
params.put("doi", doi);
params.put("doi", doi.toUpperCase());
params.put("provider", provider);
ResultWsSudocDto result;
try {
Expand Down

0 comments on commit a0365ae

Please sign in to comment.