Skip to content

Commit df18368

Browse files
Add server: true to config option
I don't know why this works, but it does. See: ssbc/multiserver#33
1 parent 9026d4f commit df18368

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ exports.create = (api) => {
3030
function Connections (config) {
3131
const connections = (process.platform === 'win32')
3232
? undefined // this seems wrong?
33-
: { incoming: { unix: [{ 'scope': 'local', 'transform': 'noauth' }] } }
33+
: { incoming: { unix: [{ 'scope': 'local', 'transform': 'noauth', server: true }] } }
3434

3535
return connections ? { connections } : {}
3636
}

0 commit comments

Comments
 (0)