mirror of
https://github.com/Yonle/bostr.git
synced 2025-04-06 10:58:01 +02:00
b2: only start connect to relays once authenticated
Signed-off-by: Yonle <yonle@lecturify.net>
This commit is contained in:
parent
3be8e325e1
commit
e08d64782e
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user