mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-10 06:34:41 +02:00
Working WebSocket connections - not yet complete, but working well
This commit is contained in:
parent
3a41a6b2e1
commit
2e18833014
4 changed files with 177 additions and 50 deletions
|
@ -43,7 +43,7 @@ module.exports = class LoginServerModule extends ServerModule {
|
|||
}
|
||||
|
||||
client.session.serverName = modInfo.name;
|
||||
client.session.isSecure = modInfo.isSecure || false;
|
||||
client.session.isSecure = _.isBoolean(client.isSecure) ? client.isSecure : (modInfo.isSecure || false);
|
||||
|
||||
clientConns.addNewClient(client, clientSock);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue