Skip to content

Commit

Permalink
[ES-504] Map object corrected
Browse files Browse the repository at this point in the history
Signed-off-by: Vishwa <[email protected]>
  • Loading branch information
vishwa-vyom authored Jan 10, 2024
1 parent 8eda9b9 commit 9132169
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public VCResult<JsonLDObject> getVerifiableCredentialWithLinkedDataProof(VCReque
Map<String,Object> vcResponseMap =sendCredentialIssueRequest(credentialRequestMap);

VCResult vcResult = new VCResult();
JsonLDObject vcJsonLdObject = JsonLDObject.fromJsonObject(vcResponseMap.get(CREDENTIAL_OBJECT_KEY));
JsonLDObject vcJsonLdObject = JsonLDObject.fromJsonObject((Map<String,Object>)vcResponseMap.get(CREDENTIAL_OBJECT_KEY));
vcResult.setCredential(vcJsonLdObject);
vcResult.setFormat(LINKED_DATA_PROOF_VC_FORMAT);
return vcResult;
Expand Down

0 comments on commit 9132169

Please sign in to comment.