Skip to content

Commit c269660

Browse files
committed
Fix for the depreciation of userForId()
1 parent 1ebd702 commit c269660

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/irc.coffee

+6-1
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,16 @@ class IrcBot extends Adapter
6060

6161
return @userForName name
6262

63+
getUserFromId: (id) ->
64+
return @robot.brain.userForId(id) if @robot.brain?.userForId?
65+
66+
return @userForId id
67+
6368
createUser: (channel, from) ->
6469
user = @getUserFromName from
6570
unless user?
6671
id = new Date().getTime().toString()
67-
user = @userForId id
72+
user = @getUserForId id
6873
user.name = from
6974

7075
if channel.match(/^[&#]/)

0 commit comments

Comments
 (0)