Skip to content

Commit

Permalink
Preserve existing credential status check behavior.
Browse files Browse the repository at this point in the history
  • Loading branch information
dlongley committed Nov 7, 2024
1 parent 9efe8cc commit 1040f95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/di.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export async function verifyCredential({config, credential, checks} = {}) {

// only check credential status when option is set
const checkStatus = checks.includes('credentialStatus') ?
_checkStatus : undefined;
_checkStatus : () => ({verified: true});

const result = await vc.verifyCredential({
credential,
Expand Down

0 comments on commit 1040f95

Please sign in to comment.