From c730605e4b8fda116a033c4283d6049a43bae9c0 Mon Sep 17 00:00:00 2001 From: Yarmo Mackenbach Date: Sat, 11 Jul 2020 22:22:20 +0200 Subject: [PATCH] Fix null proofs --- assets/scripts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/scripts.js b/assets/scripts.js index 19b226e..fc6335a 100644 --- a/assets/scripts.js +++ b/assets/scripts.js @@ -175,7 +175,7 @@ async function verifyProofs(opts) { // Generate feedback feedback += `

`; 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 += `${verifications[i].display}`; if (verifications[i].isVerified) {