*Wrap connection event in an init call event to survive the relay being recreated
This commit is contained in:
parent
db079ce214
commit
2ad6b1fd5d
|
@ -80,7 +80,8 @@ async function createSwarm(): Promise<number> {
|
|||
const id = getSwarmId();
|
||||
swarmInstances.set(id, swarmInstance);
|
||||
|
||||
swarmInstance.on("connection", (peer) => {
|
||||
swarmInstance.onSelf("init", () => {
|
||||
swarmInstance.on("connection", (peer: any) => {
|
||||
const socketId = getSocketId();
|
||||
connections.set(socketId, { swarm: id, conn: peer });
|
||||
|
||||
|
@ -88,6 +89,7 @@ async function createSwarm(): Promise<number> {
|
|||
connections.delete(socketId);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
return id;
|
||||
}
|
||||
|
@ -308,6 +310,7 @@ async function handleListenConnections(aq: ActiveQuery) {
|
|||
const swarm = await getSwarm(aq);
|
||||
|
||||
const listener = (peer: any) => {
|
||||
debugger;
|
||||
aq.sendUpdate(getSwarmToSocketConnectionId(peer));
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue