From 6cd5ba87eec861cc1b58cfb235c4d50812cf162d Mon Sep 17 00:00:00 2001 From: Darren Date: Sat, 2 Nov 2013 13:00:45 +0000 Subject: [PATCH] SOCKS server fix --- server/irc/connection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/irc/connection.js b/server/irc/connection.js index a4084cd..a2d1c13 100644 --- a/server/irc/connection.js +++ b/server/irc/connection.js @@ -187,7 +187,7 @@ IrcConnection.prototype.connect = function () { } // Are we connecting through a SOCKS proxy? - if (this.socks) { + if (that.socks) { that.socket = Socks.connect({ host: host, port: that.irc_host.port, -- 2.25.1