From 403df0806bcc1da8dd61d53a83869ad1e82ed063 Mon Sep 17 00:00:00 2001 From: Beaudan Date: Tue, 19 Feb 2019 16:52:04 +1100 Subject: [PATCH] Update the production json to just use the defaults in preparation for having other people try the messenger. Also cleaned up a little log that was incorrect --- config/production.json | 3 --- libtextsecure/message_receiver.js | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/config/production.json b/config/production.json index 82c5627db..2c63c0851 100644 --- a/config/production.json +++ b/config/production.json @@ -1,5 +1,2 @@ { - "serverUrl": "http://159.69.22.124:8080", - "cdnUrl": "http://159.69.22.124", - "serverTrustRoot": "BXu6QIKVz5MA8gstzfOgRQGqyLqOwNKHL6INkv3IHWMF" } diff --git a/libtextsecure/message_receiver.js b/libtextsecure/message_receiver.js index 8dcd2a80f..697643abb 100644 --- a/libtextsecure/message_receiver.js +++ b/libtextsecure/message_receiver.js @@ -85,7 +85,7 @@ MessageReceiver.prototype.extend({ }); window.lokiSnodeAPI.getMyLokiIp().then(myLokiIp => { localLokiServer.start(localServerPort, myLokiIp).then(port => { - window.log.info(`Local Server started at localhost:${port}`); + window.log.info(`Local Server started at ${myLokiIp}:${port}`); libloki.api.broadcastOnlineStatus(); localLokiServer.on('message', this.handleP2pMessage.bind(this)); });