Skip to content

Commit ee2aff8

Browse files
committed
added ignore in invite listener
1 parent 6547a19 commit ee2aff8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/irc.coffee

+5
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,11 @@ class IrcBot extends Adapter
271271
bot.addListener 'invite', (channel, from) ->
272272
console.log('%s invited you to join %s', from, channel)
273273

274+
if from in options.ignoreUsers
275+
console.log('Ignoring user: %s', from)
276+
# we'll ignore this message if it's from someone we want to ignore
277+
return
278+
274279
if not process.env.HUBOT_IRC_PRIVATE or process.env.HUBOT_IRC_IGNOREINVITE
275280
bot.join channel
276281

0 commit comments

Comments
 (0)