Removed mismatch check

This commit is contained in:
Uzeyir Destan 2024-06-26 02:55:13 +03:00 committed by Uzeyir Destan
parent 376fbe4aa8
commit d86f1aa422
No known key found for this signature in database
GPG Key ID: 1306E4F9246A895C

View File

@ -137,13 +137,6 @@ export default Vue.extend({
} else {
this.nonce = parsed.nonce;
}
if (
this.requiredShards &&
this.requiredShards < (parsed.requiredShards*2)-1
) {
this.$eventHub.$emit("showError", "Mismatch on the parsed QR Count");
return;
}
this.qrCodes.add(result);
this.shards.push(parsed);
},