Skip to content

Commit

Permalink
fix: imageurl issue in verification
Browse files Browse the repository at this point in the history
Signed-off-by: bhavanakarwade <[email protected]>
Signed-off-by: KulkarniShashank <[email protected]>
  • Loading branch information
bhavanakarwade authored and KulkarniShashank committed Sep 11, 2024
1 parent 8bc3498 commit 95fb7b9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/verification/src/verification.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,8 @@ export class VerificationService {

if (ProofRequestType.INDY === type) {
updateOutOfBandRequestProof.protocolVersion = updateOutOfBandRequestProof.protocolVersion || 'v1';
updateOutOfBandRequestProof.recipientKey = recipientKey || undefined;
updateOutOfBandRequestProof.invitationDid = invitationDid || undefined;
updateOutOfBandRequestProof.imageUrl = getOrganization?.logoUrl || undefined;
payload = {
orgId: user.orgId,
url,
Expand All @@ -398,6 +399,7 @@ export class VerificationService {
protocolVersion:outOfBandRequestProof.protocolVersion || 'v2',
comment:outOfBandRequestProof.comment,
label,
imageUrl: outOfBandRequestProof?.imageUrl,
proofFormats: {
presentationExchange: {
presentationDefinition: {
Expand Down

0 comments on commit 95fb7b9

Please sign in to comment.