We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6547a19 commit ee2aff8Copy full SHA for ee2aff8
src/irc.coffee
@@ -271,6 +271,11 @@ class IrcBot extends Adapter
271
bot.addListener 'invite', (channel, from) ->
272
console.log('%s invited you to join %s', from, channel)
273
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
+
279
if not process.env.HUBOT_IRC_PRIVATE or process.env.HUBOT_IRC_IGNOREINVITE
280
bot.join channel
281
0 commit comments