diff options
author | Marvin Borner | 2019-01-27 20:37:13 +0100 |
---|---|---|
committer | Marvin Borner | 2019-01-27 20:37:13 +0100 |
commit | b07aaae8d635548f859fcc0573be00534a8759dc (patch) | |
tree | a925fb6a47700e1dc8c8cdda4e6c5658e71e0462 /public | |
parent | 09e19217eb965b5afc3b7c72d6fd9b188fa78049 (diff) |
Fixed bug with undefined passphrase
Diffstat (limited to 'public')
-rw-r--r-- | public/scripts/chat.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js index a4bf74f..53b6e1d 100644 --- a/public/scripts/chat.js +++ b/public/scripts/chat.js @@ -134,6 +134,7 @@ async function evaluateKeyGeneration() { pinInput.init(async (pin, tryCount) => { try { if (await encryption.getId(await encryption.getPublic()) !== peerId) throw "Not verified!"; + passphrase = pin; await encryption.decryptPrivate(await encryption.getPrivate(), pin); chat() } catch (e) { // decrypting failed |