Skip to content

Commit

Permalink
Fix lettura valore json.
Browse files Browse the repository at this point in the history
  • Loading branch information
pintorig committed Mar 14, 2022
1 parent b2c0da2 commit baf754a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jars/core/src/main/java/it/govpay/core/utils/CSVUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public String getCodDominioFromIbanAccredito(CSVRecord record, int ... positions
if(collage.trim().isEmpty())
return "null";
else
return getCodDominioFromIbanAccredito(collage.trim());
return "\"" + getCodDominioFromIbanAccredito(collage.trim()) + "\"";
}
public String getCodDominioFromIbanAccredito(String codIban) throws ServiceException, NotFoundException {
BDConfigWrapper configWrapper = new BDConfigWrapper(ContextThreadLocal.get().getTransactionId(), true);
Expand Down

0 comments on commit baf754a

Please sign in to comment.