Browse Source

Fixed stack overflow

tags/docs-0.9
Brandon Smith 9 years ago
parent
commit
99daefdeb3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Discord.Net/DiscordClient.cs

+ 1
- 1
Discord.Net/DiscordClient.cs 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


Loading…
Cancel
Save