session manager: change to null session on close

This fixes not assigning null to the websocket session id, which
prevented re logging in later due to login() reusing the closed sockets
id.

Fixes #8089
This commit is contained in:
Adam
2019-03-06 19:09:11 -05:00
parent 8a6a6f93bf
commit 420744c7a7

View File

@@ -155,7 +155,7 @@ public class SessionManager
private void closeSession()
{
wsClient.close();
wsClient.changeSession(null);
if (accountSession == null)
{