网络连接bug

back_recharge
zhangshanxue 2020-01-03 16:09:48 +08:00
parent 481cda0103
commit 130beba759
2 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ import java.util.concurrent.ConcurrentMap;
@Override @Override
public String getBindSessionId() { public String getBindSessionId() {
return sessionId; return sessionId==null?" ":sessionId;
} }
@Override @Override

View File

@ -378,7 +378,7 @@ public class SessionManager implements INetSession<ISession>, INetReceived<ISess
offLine(oldSession); offLine(oldSession);
// oldSession.close(); oldSession.close();
return true; return true;
} }