Skip to content

Commit

Permalink
Activating terminated and expired issuers
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorpamplona committed Jan 18, 2022
1 parent b53798f commit 0509deb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/resolver.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export async function resolveKey(kID) {
LAST_FETCH = new Date();
}

if (TRUST_REGISTRY[kID] && TRUST_REGISTRY[kID].status == "current") {
if (TRUST_REGISTRY[kID]) {
return TRUST_REGISTRY[kID];
}

Expand Down

0 comments on commit 0509deb

Please sign in to comment.