diff --git a/assets/scripts.js b/assets/scripts.js index 1f89810..07f5cc3 100644 --- a/assets/scripts.js +++ b/assets/scripts.js @@ -154,7 +154,7 @@ async function verifyProofs(opts) { let notation, isVerified, verifications = []; for (var i = 0; i < keyData.notations.length; i++) { notation = keyData.notations[i]; - if (!(notation[0] == "proof@keyoxide.org" || notation[0] == "proof@metacode.biz")) { continue; } + if (notation[0] == "proof@metacode.biz") { continue; } verifications.push(await verifyProof(notation[1], keyData.fingerprint)); } @@ -187,12 +187,10 @@ async function displayProfile(opts) { for (var i = 0; i < keyData.notations.length; i++) { notation = keyData.notations[i]; - if (!(notation[0] == "proof@keyoxide.org" || notation[0] == "proof@metacode.biz")) { continue; } + if (notation[0] == "proof@metacode.biz") { continue; } verifications.push(await verifyProof(notation[1], keyData.fingerprint)); } - console.log(keyData); - // Generate feedback feedback += `
`; feedback += `
`;