diff options
author | Marvin Borner | 2019-01-24 17:22:12 +0100 |
---|---|---|
committer | Marvin Borner | 2019-01-24 17:22:12 +0100 |
commit | 5abc62e8657e70c405afa175e52c73316d8a53a2 (patch) | |
tree | 242aea218267d943d865deddc874e65b4b43f39d /public/scripts/chat.js | |
parent | 9c3e20138d730c167e1869843ec060c7310d8c63 (diff) |
Added alasql database and pgp worker
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 a31173e..ec27a11 100644 --- a/public/scripts/chat.js +++ b/public/scripts/chat.js @@ -2,12 +2,12 @@ const $ = require('jquery'); const encryption = require('./2_encryption'); const nanoid = require('nanoid'); -let connectedPeers = []; +let connectedPeers = []; // TODO: Save new peers in array let connectedPeer; const peerId = nanoid(); // setup encryption -if (encryption.check()) { +if (encryption.setup() && encryption.check()) { // TODO: Ask for password chat(); } else { |