diff options
author | Marvin Borner | 2019-01-26 18:28:13 +0100 |
---|---|---|
committer | Marvin Borner | 2019-01-26 18:28:13 +0100 |
commit | 95c39ac875b7dda792057884d0901b9caad7c740 (patch) | |
tree | 197b618cf0a66a005790364ad206d56477c3d2fb /public/scripts/chat.js | |
parent | e8c9f6873a2291958bad19329fb9b4a037f52c21 (diff) |
Reworked database and async methods
Diffstat (limited to 'public/scripts/chat.js')
-rw-r--r-- | public/scripts/chat.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js index e81bd44..01377bf 100644 --- a/public/scripts/chat.js +++ b/public/scripts/chat.js @@ -8,12 +8,12 @@ const peerId = nanoid(); // setup encryption (async () => { - if (localStorage.getItem('database') === 'success' && encryption.setupConn() && await encryption.check()) { + encryption.setup(); + if (localStorage.getItem('database') === 'success' && await encryption.check()) { // TODO: Ask for passphrase chat(); } else { console.log('[LOG] No existing keys found! Generating...'); - encryption.setup(); (async () => await encryption.generate(peerId, 'supersecure').then(() => chat()))() } })(); |