Skip to content

Commit

Permalink
fix: check issuer verification error
Browse files Browse the repository at this point in the history
Co-authored-by: John Henderson <[email protected]>
  • Loading branch information
JGiter and jrhender authored Jul 18, 2024
1 parent 7357300 commit 84c70a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/claims/claims.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1505,7 +1505,7 @@ export class ClaimsService {
}
const { verified, error } = issuerVerificationResult;
issuerVerified = issuerVerified && verified;
if (error.length > 0) {
if (error !== "") {
errors.push(error);
}
} catch (e) {
Expand Down

0 comments on commit 84c70a8

Please sign in to comment.