Skip to content

Commit

Permalink
fix: issuer verification error
Browse files Browse the repository at this point in the history
  • Loading branch information
JGiter committed Jul 18, 2024
1 parent 7357300 commit 3f8fd29
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 @@ -1506,7 +1506,7 @@ export class ClaimsService {
const { verified, error } = issuerVerificationResult;
issuerVerified = issuerVerified && verified;
if (error.length > 0) {
errors.push(error);
errors.push(...error);
}
} catch (e) {
issuerVerified = false;
Expand Down

0 comments on commit 3f8fd29

Please sign in to comment.