We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3e45fc1 + 83a7848 commit fbeeda4Copy full SHA for fbeeda4
src/irc.coffee
@@ -85,6 +85,7 @@ class IrcBot extends Adapter
85
86
options =
87
nick: process.env.HUBOT_IRC_NICK or @robot.name
88
+ realName: process.env.HUBOT_IRC_REALNAME
89
port: process.env.HUBOT_IRC_PORT
90
rooms: process.env.HUBOT_IRC_ROOMS.split(",")
91
server: process.env.HUBOT_IRC_SERVER
@@ -100,6 +101,7 @@ class IrcBot extends Adapter
100
101
102
client_options =
103
userName: options.userName
104
+ realName: options.realName
105
password: options.password
106
debug: options.debug
107
port: options.port
0 commit comments