From f92aeceb22f2c6cad6a8ab0fc199ef2df777c137 Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Sun, 18 Feb 2018 13:07:24 +0200 Subject: [PATCH] Fix bind not being passed to irc-framework --- src/client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.js b/src/client.js index e8adfb3f..98f7a3ae 100644 --- a/src/client.js +++ b/src/client.js @@ -276,7 +276,7 @@ Client.prototype.connect = function(args) { gecos: network.realname, password: network.password, tls: network.tls, - localAddress: config.bind, + outgoing_addr: config.bind, rejectUnauthorized: false, enable_chghost: true, enable_echomessage: true,