fix: Fixes dropped packets (#1512)
This commit is contained in:
parent
7003552e71
commit
5d78941ddf
1 changed files with 1 additions and 1 deletions
|
|
@ -802,7 +802,7 @@ public partial class NetState : IComparable<NetState>
|
||||||
{
|
{
|
||||||
if (!throttler(packetId, this, out bool drop))
|
if (!throttler(packetId, this, out bool drop))
|
||||||
{
|
{
|
||||||
return drop ? ParserState.Throttled : ParserState.AwaitingNextPacket;
|
return drop ? ParserState.AwaitingNextPacket : ParserState.Throttled;
|
||||||
}
|
}
|
||||||
|
|
||||||
SetPacketTime(packetId);
|
SetPacketTime(packetId);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue