Skip to content

Commit 2d3dfa5

Browse files
committed
Merge pull request nandub#47 from saebekassebil/master
Fix NickServ IDENTIFY messages for irc.mozilla.org - Fixes nandub#46
2 parents 57bfa43 + 6cef98f commit 2d3dfa5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/irc.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ class IrcBot extends Adapter
127127
identify_args += "#{options.nickpass}"
128128

129129
bot.addListener 'notice', (from, to, text) ->
130-
if from is 'NickServ' and text.indexOf('identify') isnt -1
130+
if from is 'NickServ' and text.toLowerCase().indexOf('identify') isnt -1
131131
bot.say 'NickServ', "identify #{identify_args}"
132132
else if options.nickpass and from is 'NickServ' and
133133
(text.indexOf('Password accepted') isnt -1 or

0 commit comments

Comments
 (0)