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
|
// Host
|
||||||
//
|
//
|
||||||
// @type string
|
// @type string
|
||||||
// @default "irc.freenode.org"
|
// @default "chat.freenode.net"
|
||||||
//
|
//
|
||||||
host: "irc.freenode.org",
|
host: "chat.freenode.net",
|
||||||
|
|
||||||
//
|
//
|
||||||
// Port
|
// Port
|
||||||
|
@ -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
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user