From 4d706586b408f30c19273663d299d2f13d31e60a Mon Sep 17 00:00:00 2001 From: Christian Bundy Date: Mon, 7 Jan 2019 11:15:40 -0800 Subject: [PATCH] Add `server: true` to config option I don't know why this works, but it does. See: https://github.com/ssbc/multiserver/issues/33 --- config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.js b/config.js index d637c6bb..afe7ff4a 100644 --- a/config.js +++ b/config.js @@ -30,7 +30,7 @@ exports.create = (api) => { function Connections (config) { const connections = (process.platform === 'win32') ? undefined // this seems wrong? - : { incoming: { unix: [{ 'scope': 'local', 'transform': 'noauth' }] } } + : { incoming: { unix: [{ 'scope': 'local', 'transform': 'noauth', 'server': true }] } } return connections ? { connections } : {} }