Fixed small bug related to double connecting to the same server
This commit is contained in:
parent
aa360e4708
commit
711632b65d
1 changed files with 1 additions and 1 deletions
|
@ -226,7 +226,7 @@ async function doHandleConnectRequest(serverAddress: string, serverUniqueId: str
|
||||||
}
|
}
|
||||||
|
|
||||||
server_connections.setActiveConnectionHandler(targetServerConnection);
|
server_connections.setActiveConnectionHandler(targetServerConnection);
|
||||||
if(isCurrentServerConnection) {
|
if(targetServerConnection.getCurrentServerUniqueId() === serverUniqueId) {
|
||||||
/* Just join the new channel and may use the token (before) */
|
/* Just join the new channel and may use the token (before) */
|
||||||
|
|
||||||
/* TODO: Use the token! */
|
/* TODO: Use the token! */
|
||||||
|
|
Loading…
Add table
Reference in a new issue