Also fixed the default freenode hostname in the client file

This commit is contained in:
dubzi 2016-02-13 22:47:42 +00:00
parent 30fa879400
commit d909065a8f
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ Client.prototype.connect = function(args) {
var client = this; var client = this;
var server = { var server = {
name: args.name || "", name: args.name || "",
host: args.host || "irc.freenode.org", host: args.host || "chat.freenode.net",
port: args.port || (args.tls ? 6697 : 6667), port: args.port || (args.tls ? 6697 : 6667),
rejectUnauthorized: false rejectUnauthorized: false
}; };