Skip to content

Commit

Permalink
Merge pull request #1084 from ase-101/binding
Browse files Browse the repository at this point in the history
ES-187
  • Loading branch information
mahammedtaheer authored Sep 6, 2023
2 parents d5f908e + 975616d commit 1fbdf68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
@Data
public class IdaVcExchangeResponse<T> {

private T verifiableCredential;
private T verifiableCredentials;
}
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public VCResult getLinkedDataProofCredential(ResponseEntity<IdaResponseWrapper<I
IdaResponseWrapper<IdaVcExchangeResponse<JsonLDObject>> responseWrapper = responseEntity.getBody();
if (responseWrapper.getResponse() != null) {
VCResult vCResult = new VCResult();
vCResult.setCredential(responseWrapper.getResponse().getVerifiableCredential());
vCResult.setCredential(responseWrapper.getResponse().getVerifiableCredentials());
vCResult.setFormat("ldp_vc");
return vCResult;
}
Expand Down

0 comments on commit 1fbdf68

Please sign in to comment.