Skip to content

Commit

Permalink
fix small style nit
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Nehren committed Jan 11, 2015
1 parent 51b8294 commit 45db75d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/irc.js
Original file line number Diff line number Diff line change
Expand Up @@ -720,7 +720,7 @@ Client.prototype.connect = function(retryCount, callback) {
}
if (self.opt.webirc.ip && self.opt.webirc.pass && self.opt.webirc.host) {
self.send('WEBIRC', self.opt.webirc.pass, self.opt.userName, self.opt.webirc.host, self.opt.webirc.ip);
}else if (self.opt.password) {
} else if (self.opt.password) {
self.send('PASS', self.opt.password);
}
self.send('NICK', self.opt.nick);
Expand Down

0 comments on commit 45db75d

Please sign in to comment.