Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
devinstewart committed Nov 24, 2024
1 parent 4402d2c commit 9d1925d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ internals.validateSignature = async (payload, certCache) => {
let certificatePem;
if (certCache) {
certificatePem = certCache.get(certUrl) || await internals.fetchCert(certUrl, certCache);
} else {
}
else {
certificatePem = await internals.fetchCert(certUrl, certCache);
}

Expand Down

0 comments on commit 9d1925d

Please sign in to comment.