mirror of
https://github.com/thelounge/thelounge
synced 2024-11-11 15:07:14 +00:00
Merge pull request #2958 from thelounge/xpaw/ident-bind
Don't fallback to `host` in identd server
This commit is contained in:
commit
2f777627b9
1 changed files with 1 additions and 1 deletions
|
@ -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)}`);
|
||||
|
|
Loading…
Reference in a new issue