We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 57bfa43 + 6cef98f commit 2d3dfa5Copy full SHA for 2d3dfa5
src/irc.coffee
@@ -127,7 +127,7 @@ class IrcBot extends Adapter
127
identify_args += "#{options.nickpass}"
128
129
bot.addListener 'notice', (from, to, text) ->
130
- if from is 'NickServ' and text.indexOf('identify') isnt -1
+ if from is 'NickServ' and text.toLowerCase().indexOf('identify') isnt -1
131
bot.say 'NickServ', "identify #{identify_args}"
132
else if options.nickpass and from is 'NickServ' and
133
(text.indexOf('Password accepted') isnt -1 or
0 commit comments