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.js4
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 {