mirror of
https://codeberg.org/keyoxide/keyoxide-web.git
synced 2024-12-22 23:09:29 -07:00
Fix null proofs
This commit is contained in:
parent
3df3a4fe79
commit
c730605e4b
1 changed files with 1 additions and 1 deletions
|
@ -175,7 +175,7 @@ async function verifyProofs(opts) {
|
|||
// Generate feedback
|
||||
feedback += `<p>`;
|
||||
for (var i = 0; i < verifications.length; i++) {
|
||||
if (verifications[i].type == "null") { continue; }
|
||||
if (verifications[i].type == null) { continue; }
|
||||
feedback += `${verifications[i].type}: `;
|
||||
feedback += `<a class="proofDisplay" href="${verifications[i].url}">${verifications[i].display}</a>`;
|
||||
if (verifications[i].isVerified) {
|
||||
|
|
Loading…
Reference in a new issue