Fixed app.js not sending user ID itself and only peers it knows #5

Merged
snxraven merged 26 commits from MiTask/LinkUp-P2P-Chat:main into main 2024-06-10 11:26:59 -04:00
Showing only changes of commit 2ed13e50f7 - Show all commits

View File

@ -24,8 +24,8 @@ class Client extends EventEmitter {
if(this.swarm.connections.size > 0) { if(this.swarm.connections.size > 0) {
let arr = []; let arr = [];
[...this.swarm.peers].forEach(peer => arr.push([peer.topics])); [...this.swarm.peers].forEach(peer => arr.push([peer.topics]));
console.log([...this.swarm.peers])
console.log(arr); console.log(arr);
process.exit(-1);
} }
}); });
} }