lvxinran 2020-01-05 00:15:30 +08:00
commit 4bc5c1d99c
2 changed files with 2 additions and 2 deletions

View File

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

View File

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