Skip to content

Commit

Permalink
chore: return patId instead of empty string if patId cannot be converted
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelErpi committed Jan 30, 2024
1 parent c7b7989 commit ba59c4c
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ protected static String convertId(String id) {
convertedId = matcher.group();
} else {
log.warn("Identifier to convert does not have 9 digits without leading '0': " + id);
return id;
}
return convertedId;
}
Expand Down

0 comments on commit ba59c4c

Please sign in to comment.