diff options
author | Marvin Borner | 2019-02-17 15:27:09 +0100 |
---|---|---|
committer | Marvin Borner | 2019-02-17 15:27:09 +0100 |
commit | 3bf6ce2e8cb77b7b59365a62dbefd7d472ba0dd6 (patch) | |
tree | 06576811e59ffe3625d38609913055bd1ae268be /public/scripts/chat.js | |
parent | 0ef393b75e900e08f953cbc1547e3f2aaedfd643 (diff) |
Fixed multi monitor bug
Diffstat (limited to 'public/scripts/chat.js')
-rw-r--r-- | public/scripts/chat.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js index 2c191b9..497349b 100644 --- a/public/scripts/chat.js +++ b/public/scripts/chat.js @@ -55,7 +55,7 @@ async function evaluateKeyGeneration() { throw 'Not verified!'; } await encryption.generatePrivateFingerprint(pin); - await encryption.decryptPrivateKey(); + await encryption.decryptPrivateKey(); // try decrypting chat(); } catch (err) { // decrypting failed if (tryCount === 3) { |