From 74b5e13dd983f0e756c942716af204e5d8f8806c Mon Sep 17 00:00:00 2001 From: Blank Date: Wed, 5 Aug 2026 22:05:10 +0800 Subject: [PATCH] =?UTF-8?q?fix(client):=20=E4=BF=AE=E5=A4=8D=20ConnectStat?= =?UTF-8?q?e.CreateConnection=20=E4=B8=AD=20stream=20=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E5=89=8D=E7=9A=84=E5=A4=9A=E4=BD=99=E7=A9=BA=E6=A0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Linear: GFX-313 --- src/GameFrameX.SuperSocket.Client/ConnectState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GameFrameX.SuperSocket.Client/ConnectState.cs b/src/GameFrameX.SuperSocket.Client/ConnectState.cs index 2f915f1d9..a9059753b 100644 --- a/src/GameFrameX.SuperSocket.Client/ConnectState.cs +++ b/src/GameFrameX.SuperSocket.Client/ConnectState.cs @@ -73,7 +73,7 @@ public IConnection CreateConnection(ConnectionOptions connectionOptions) if (stream != null) { - return new StreamPipeConnection(stream , socket.RemoteEndPoint, socket.LocalEndPoint, connectionOptions); + return new StreamPipeConnection(stream, socket.RemoteEndPoint, socket.LocalEndPoint, connectionOptions); } else {