aboutsummaryrefslogtreecommitdiffhomepage
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-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 eda7a24..eac7246 100644
--- a/public/scripts/chat.js
+++ b/public/scripts/chat.js
@@ -15,7 +15,7 @@ const swal = require('sweetalert');
const xkcdPassword = require('xkcd-password');
// setup vars
-const host = '127.0.0.1';
+const host = 'meta.marvinborner.de';
let peerId, call, passphrase, connectedPeer;
let connectedPeers = []; // TODO: Save new peers in array
@@ -84,7 +84,7 @@ function chat() {
$('#chat').fadeIn();
// start the peer
- const peer = new Peer(peerId, {host: host, port: 8080, path: '/api', debug: 0});
+ const peer = new Peer(peerId, {host: host, port: 4242, path: '/api', debug: 0});
// Peer events
peer.on('call', call => getMediaStream(stream => call.answer(stream))); // TODO: Ask for call accept