3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2024-11-06 00:00:47 +01:00

Fix an issue with too short not breaking the loop

Dieser Commit ist enthalten in:
Andrew Steinborn 2020-05-31 14:01:27 -04:00
Ursprung f27aa8e3ba
Commit 46e92a069b

Datei anzeigen

@ -49,6 +49,7 @@ public class MinecraftVarintFrameDecoder extends ByteToMessageDecoder {
throw VARINT_BIG_CACHED;
} else if (reader.result == DecodeResult.TOO_SHORT) {
// No-op: we couldn't get a useful result.
break;
}
}
}