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 ecfc62ff2c - Show all commits

View File

@ -23,8 +23,12 @@ class Client extends EventEmitter {
console.log(`Peers count: ${this.swarm.connections.size}`); console.log(`Peers count: ${this.swarm.connections.size}`);
if(this.swarm.connections.size > 0) { if(this.swarm.connections.size > 0) {
let peers = [...this.swarm.peers].filter(peer => peer && peer.publicKey && peer.publicKey.toString('hex').startsWith("51be150")) let peers = [...this.swarm.peers].filter(peer => peer && peer.publicKey && peer.publicKey.toString('hex').startsWith("51be150"))
console.log(peers[0]) if(peers.length > 0) {
console.log([peers[0].topics]); console.log(peers[0])
console.log([peers[0].topics]);
} else {
console.log([...peers]);
}
} }
}); });
} }