aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/scripts/chat.js
diff options
context:
space:
mode:
Diffstat (limited to 'public/scripts/chat.js')
-rw-r--r--public/scripts/chat.js14
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 {