Skip to content

Commit 951e007

Browse files
committedApr 30, 2015
Fix for nandub#135
Ignore the message if the sender is undefined
1 parent 07753b4 commit 951e007

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎src/irc.coffee

+2
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,8 @@ class IrcBot extends Adapter
236236
self.receive new TextMessage(user, message)
237237

238238
bot.addListener 'message', (from, to, message) ->
239+
return unless from
240+
239241
if options.nick.toLowerCase() == to.toLowerCase()
240242
# this is a private message, let the 'pm' listener handle it
241243
return

0 commit comments

Comments
 (0)