Fixed stack overflow

This commit is contained in:
Brandon Smith
2015-08-13 15:07:46 -03:00
parent 031a79aa7e
commit 99daefdeb3

View File

@@ -418,7 +418,7 @@ namespace Discord
.FirstOrDefault(); .FirstOrDefault();
} }
public User FindChannelUser(Channel channel, string name) public User FindChannelUser(Channel channel, string name)
=> FindChannelUser(channel, name); => FindChannelUser(channel.Id, name);
public User FindChannelUser(string channelId, string name) public User FindChannelUser(string channelId, string name)
{ {
return _users return _users