Skip to content

Commit e4b7c2e

Browse files
committed
[修复]1. 修复是否链接的判断错误
1 parent 1ac4e86 commit e4b7c2e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/GameFrameX.SuperSocket.Server/AppSession.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public bool IsConnected
5858
{
5959
get
6060
{
61-
if (_connection?.CloseReason.HasValue != null)
61+
if (_connection?.CloseReason != null)
6262
{
6363
return false;
6464
}

0 commit comments

Comments
 (0)