From fedbb0b8192d2c7926f8eab524ba8668841348e9 Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Sun, 6 Jan 2019 20:55:15 +0200 Subject: [PATCH] Don't fallback to `host` in identd server --- src/identification.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/identification.js b/src/identification.js index 099b3ee6..26a82a0b 100644 --- a/src/identification.js +++ b/src/identification.js @@ -26,7 +26,7 @@ class Identification { const server = net.createServer(this.serverConnection.bind(this)); server.listen({ port: Helper.config.identd.port || 113, - host: Helper.config.bind || Helper.config.host, + host: Helper.config.bind, }, () => { const address = server.address(); log.info(`Identd server available on ${colors.green(address.address + ":" + address.port)}`);