aboutsummaryrefslogtreecommitdiffhomepage
path: root/public
diff options
context:
space:
mode:
authorMarvin Borner2019-01-27 13:12:18 +0100
committerMarvin Borner2019-01-27 13:12:18 +0100
commit9683cf0c06c4e5a0618e75a23e491abdbb0a7d19 (patch)
tree4783e29f557b78e4f2108c66aefc67047befeedb /public
parent8d03a0f5e668260a0d94de69d15fa3ddb064bc9d (diff)
Cleaned up
Diffstat (limited to 'public')
-rw-r--r--public/scripts/chat.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js
index 5e577f2..b50ec81 100644
--- a/public/scripts/chat.js
+++ b/public/scripts/chat.js
@@ -3,10 +3,10 @@ const encryption = require('./2_encryption');
const wordList = require('./3_wordlist');
const xkcdPassword = require('xkcd-password');
+const host = '127.0.0.1';
let peerId;
let connectedPeer;
let connectedPeers = []; // TODO: Save new peers in array
-const host = 'meta.marvinborner.de';
const generator = new xkcdPassword();
generator.initWithWordList(wordList);