From 56c73b9d987276e5f251c85798f6b1c25e73d8f0 Mon Sep 17 00:00:00 2001 From: duckietm Date: Fri, 8 May 2026 08:03:51 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=86=99=20Small=20fix=20for=20the=20websoc?= =?UTF-8?q?ket,=20some=20CF=20users=20have=20problems=20with=20the=20max?= =?UTF-8?q?=20frame=20size?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../networking/gameserver/WebSocketChannelInitializer.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Emulator/src/main/java/com/eu/habbo/networking/gameserver/WebSocketChannelInitializer.java b/Emulator/src/main/java/com/eu/habbo/networking/gameserver/WebSocketChannelInitializer.java index facfb285..d2f19b13 100644 --- a/Emulator/src/main/java/com/eu/habbo/networking/gameserver/WebSocketChannelInitializer.java +++ b/Emulator/src/main/java/com/eu/habbo/networking/gameserver/WebSocketChannelInitializer.java @@ -18,6 +18,7 @@ import io.netty.channel.ChannelInitializer; import io.netty.channel.socket.SocketChannel; import io.netty.handler.codec.http.HttpObjectAggregator; import io.netty.handler.codec.http.HttpServerCodec; +import io.netty.handler.codec.http.websocketx.WebSocketFrameAggregator; import io.netty.handler.codec.http.websocketx.WebSocketServerProtocolConfig; import io.netty.handler.codec.http.websocketx.WebSocketServerProtocolHandler; import io.netty.handler.logging.LoggingHandler; @@ -60,6 +61,7 @@ public class WebSocketChannelInitializer extends ChannelInitializer