Skip to content

Commit 6b03654

Browse files
Handle PMs once, rather than twice.
Currently new PMs are handled first by the 'message' handler and then by the 'pm' handler. This change makes the 'message' handler take a back seat to the 'pm' handler.
1 parent e5accaa commit 6b03654

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/irc.coffee

+4
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,10 @@ class IrcBot extends Adapter
165165
self.createUser channel, nick
166166

167167
bot.addListener 'message', (from, to, message) ->
168+
if options.nick.toLowerCase() == to.toLowerCase()
169+
# this is a private message, let the 'pm' listener handle it
170+
return
171+
168172
console.log "From #{from} to #{to}: #{message}"
169173

170174
user = self.createUser to, from

0 commit comments

Comments
 (0)