Skip to content

Commit b8d7825

Browse files
committed
Merge pull request nandub#64 from hashbrowncipher/pm_once
Handle PMs once, rather than twice.
2 parents e5accaa + 6b03654 commit b8d7825

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)