3
0
Mirror von https://github.com/PaperMC/Velocity.git synchronisiert 2025-01-12 08:01:13 +01:00

Correctly retain message buffer for LoginPluginMessage.

Fixes #407
Dieser Commit ist enthalten in:
Andrew Steinborn 2020-12-21 13:14:38 -05:00
Ursprung 9c375f337b
Commit 98b74fd220

Datei anzeigen

@ -49,7 +49,7 @@ public class LoginPluginMessage extends DeferredByteBufHolder implements Minecra
this.id = ProtocolUtils.readVarInt(buf);
this.channel = ProtocolUtils.readString(buf);
if (buf.isReadable()) {
this.replace(buf.readSlice(buf.readableBytes()));
this.replace(buf.readRetainedSlice(buf.readableBytes()));
} else {
this.replace(Unpooled.EMPTY_BUFFER);
}