Skip to content

Commit

Permalink
update code
Browse files Browse the repository at this point in the history
  • Loading branch information
Pratap2018 committed Aug 8, 2024
1 parent 41f51e1 commit 5e327f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/did/services/did.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ export class DidService {
});

// If signature is passed then no need to check if it is present in db or not
if (!signInfos && (!didInfo || didInfo == null)) {
if (signInfos == undefined && (!didInfo || didInfo == null)) {
throw new NotFoundException([
`${did} not found`,
`${did} is not owned by the appId ${appDetail.appId}`,
Expand Down

0 comments on commit 5e327f0

Please sign in to comment.