We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2529236 commit 61d8985Copy full SHA for 61d8985
src/irc.coffee
@@ -42,9 +42,10 @@ class IrcBot extends Adapter
42
unflood: process.env.HUBOT_IRC_UNFLOOD?
43
debug: process.env.HUBOT_IRC_DEBUG?
44
usessl: process.env.HUBOT_IRC_USESSL?
45
+ userName: process.env.HUBOT_IRC_USERNAME?
46
47
client_options =
- userName: process.env.HUBOT_IRC_USERNAME
48
+ userName: options.userName,
49
password: options.password,
50
debug: options.debug,
51
port: options.port,
0 commit comments