Merge pull request #13 from dubzi/fixed_freenode_url
Changed the hostname of freenode in the default config
This commit is contained in:
commit
7746629f38
@ -133,9 +133,9 @@ module.exports = {
|
||||
// Host
|
||||
//
|
||||
// @type string
|
||||
// @default "irc.freenode.org"
|
||||
// @default "chat.freenode.net"
|
||||
//
|
||||
host: "irc.freenode.org",
|
||||
host: "chat.freenode.net",
|
||||
|
||||
//
|
||||
// Port
|
||||
|
@ -124,7 +124,7 @@ Client.prototype.connect = function(args) {
|
||||
var client = this;
|
||||
var server = {
|
||||
name: args.name || "",
|
||||
host: args.host || "irc.freenode.org",
|
||||
host: args.host || "chat.freenode.net",
|
||||
port: args.port || (args.tls ? 6697 : 6667),
|
||||
rejectUnauthorized: false
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user