From 091de3e4e03c7f4ff7f5f5359d72a68d90a246cc Mon Sep 17 00:00:00 2001 From: antelle Date: Mon, 2 Apr 2018 08:32:27 +0200 Subject: [PATCH] fix #896: increased wasm timeout --- app/scripts/util/kdbxweb-init.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/scripts/util/kdbxweb-init.js b/app/scripts/util/kdbxweb-init.js index bea9652e..e75882f0 100644 --- a/app/scripts/util/kdbxweb-init.js +++ b/app/scripts/util/kdbxweb-init.js @@ -27,7 +27,7 @@ const KdbxwebInit = { return Promise.reject('WebAssembly is not supported'); } return new Promise((resolve, reject) => { - const loadTimeout = setTimeout(() => reject('timeout'), 1000); + const loadTimeout = setTimeout(() => reject('timeout'), 5000); try { const ts = logger.ts(); const argon2LoaderCode = require('argon2');