Skip to content

Commit abbc282

Browse files
committed
Merge pull request nandub#66 from theodi/master
Clear user.room when a user leaves the channel
2 parents 57ec2ec + 0989308 commit abbc282

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/irc.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ class IrcBot extends Adapter
200200

201201
bot.addListener 'part', (channel, who, reason) ->
202202
console.log('%s has left %s: %s', who, channel, reason)
203-
user = self.createUser channel, who
203+
user = self.createUser '', who
204204
self.receive new LeaveMessage(user)
205205

206206
bot.addListener 'kick', (channel, who, _by, reason) ->

0 commit comments

Comments
 (0)