b2: only start connect to relays once authenticated

Signed-off-by: Yonle <yonle@lecturify.net>
This commit is contained in:
Yonle 2023-11-16 22:16:31 +07:00
parent 3be8e325e1
commit e08d64782e

View File

@ -82,6 +82,7 @@ module.exports = (ws, req) => {
if (auth(authKey, authorized, authorized_keys, data[1], ws, req)) {
ws.pubkey = data[1].pubkey;
authorized = true;
relays.forEach(_ => newConn(_, ws.id));
}
break;
default:
@ -103,7 +104,7 @@ module.exports = (ws, req) => {
});
csess.set(ws.id, ws);
relays.forEach(_ => newConn(_, ws.id));
if (authorized) relays.forEach(_ => newConn(_, ws.id));
}
// WS - Broadcast message to every existing sockets