Don't check for wasm support when using sha256 challenge type

master
Thomas Lynch 9 months ago
parent 74ae694669
commit 844cff1baa
Signed by: fatchan
GPG Key ID: A7E5E8B7E11EE92D
  1. 2
      .gitignore
  2. 2
      src/js/challenge.js
  3. 2
      src/js/challenge.min.js

2
.gitignore vendored

@ -1 +1,3 @@
tor/hidden_service/
haproxy/*.pem
haproxy/*.crt

@ -156,7 +156,7 @@ const powFinished = new Promise((resolve) => {
}
});
if (!wasmSupported) {
if (argon2 && !wasmSupported) {
return insertError(__("Browser does not support WebAssembly."));
}
const powOpts = {

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save