Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
HAM-2015 committed Mar 14, 2020
1 parent c80ae9c commit 45c869d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CsGo/Go/channel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1231,7 +1231,7 @@ protected override void async_timed_recv_(int ms, Action<chan_recv_wrap<T>> ntf,
if (!_msgQueue.Empty)
{
T msg = _msgQueue.RemoveFirst();
ntf(new chan_recv_wrap<T> { state = chan_state.ok });
ntf(new chan_recv_wrap<T> { state = chan_state.ok, msg = msg });
}
else if (_closed)
{
Expand Down

0 comments on commit 45c869d

Please sign in to comment.