Skip to content

Commit

Permalink
Merge pull request #11 from kaifk468/develop
Browse files Browse the repository at this point in the history
[ES-504] typecasted VcresponseMap
  • Loading branch information
vishwa-vyom committed Jan 11, 2024
2 parents 8eda9b9 + 3a21d33 commit 1293074
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 1293074

Please sign in to comment.