aboutsummaryrefslogtreecommitdiff
path: root/lib/app.js
diff options
context:
space:
mode:
authorcel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519>2019-01-29 00:11:45 -1000
committercel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519>2019-01-29 00:20:15 -1000
commit9b7c66e9644594fa04a5b88ee37583093b9b84dd (patch)
tree3b7fff9492a058a023cd466806470aec99eef390 /lib/app.js
parent6cf5e1b999c6e59b1f8092a99d6b0a462a016b34 (diff)
downloadpatchfoo-9b7c66e9644594fa04a5b88ee37583093b9b84dd.tar.gz
patchfoo-9b7c66e9644594fa04a5b88ee37583093b9b84dd.zip
Omit default ssb-server port
Diffstat (limited to 'lib/app.js')
-rw-r--r--lib/app.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/app.js b/lib/app.js
index 031077f..cb5075d 100644
--- a/lib/app.js
+++ b/lib/app.js
@@ -39,6 +39,7 @@ function App(sbot, config) {
this.previewVotes = conf.previewVotes == null ? false : conf.previewVotes
this.previewContacts = conf.previewContacts == null ? false : conf.previewContacts
this.useOoo = conf.ooo == null ? false : conf.ooo
+ this.ssbPort = 8008
var host1 = /:/.test(this.host) ? '[' + this.host + ']' : this.host
this.baseUrl = 'http://' + host1 + ':' + this.port