Skip to content

Commit

Permalink
Fix IrcBot example #61
Browse files Browse the repository at this point in the history
  • Loading branch information
txdv committed Nov 28, 2018
1 parent 1224728 commit 6e8ecbf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/IrcDotNet.Samples.Common/IrcBot.cs
Original file line number Diff line number Diff line change
Expand Up @@ -342,14 +342,14 @@ private void IrcClient_Channel_UserJoined(object sender, IrcChannelUserEventArgs
{
var channel = (IrcChannel)sender;

OnChannelUserLeft(channel, e);
OnChannelUserJoined(channel, e);
}

private void IrcClient_Channel_UserLeft(object sender, IrcChannelUserEventArgs e)
{
var channel = (IrcChannel)sender;

OnChannelUserJoined(channel, e);
OnChannelUserLeft(channel, e);
}

private void IrcClient_Channel_NoticeReceived(object sender, IrcMessageEventArgs e)
Expand Down

0 comments on commit 6e8ecbf

Please sign in to comment.