diff options
author | Marvin Borner | 2019-01-27 18:04:38 +0100 |
---|---|---|
committer | Marvin Borner | 2019-01-27 18:04:38 +0100 |
commit | dfce4c5a178275f4b7226ae397226cbbf84571a8 (patch) | |
tree | 267bb6e3275e92dc8b781229f8087996ed1df753 /public/scripts/chat.js | |
parent | 46f92ac829cfaeb255317c99a0cb220e1ff6b071 (diff) |
Added 3 retries
Diffstat (limited to 'public/scripts/chat.js')
-rw-r--r-- | public/scripts/chat.js | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js index eb08c98..569e062 100644 --- a/public/scripts/chat.js +++ b/public/scripts/chat.js @@ -21,14 +21,20 @@ generator.initWithWordList(wordList); peerId = await generator.generate().then(words => words.join('-')); encryption.setup(); if (localStorage.getItem('database') === 'success' && await encryption.check()) { - pinInput.init(async pin => { + pinInput.init(async (pin, tryCount) => { try { await encryption.decryptPrivate(await encryption.getPrivate(), pin); chat() } catch (e) { - // TODO: 3 passphrase tries - console.error('Passphrase is wrong!'); - pinInput.failure(); + if (tryCount === 3) { + encryption.reset(); + console.error('Too many tries!'); + pinInput.failure('Account was deleted, this site will reload.'); + setTimeout(() => location.reload(), 1500) + } else { + console.error('Passphrase is wrong!'); + pinInput.failure('Passphrase is wrong!'); + } } }); } else { |