Skip to content

Commit

Permalink
ES-311 Update IdaVCIssuancePluginImpl.java
Browse files Browse the repository at this point in the history
Signed-off-by: ase-101 <[email protected]>
  • Loading branch information
ase-101 authored May 23, 2024
1 parent 6027bd1 commit 61a8ab1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ private byte[] b64Decode(String value) {
//Converts an array of two-letter language codes to their corresponding ISO 639-2/T language codes.
private List<String> convertLangCodesToISO3LanguageCodes(String[] langCodes) {
if(langCodes == null || langCodes.length == 0 || (langCodes.length == 1 && langCodes[0].isEmpty()))
return List.of("eng");
return List.of();
return Arrays.stream(langCodes)
.map(langCode -> {
try {
Expand Down

0 comments on commit 61a8ab1

Please sign in to comment.