Fixed bot crash on file attachment, added 2 more new events and topic ID to file message #6

Merged
snxraven merged 18 commits from MiTask/LinkUp-P2P-Chat:main into main 2024-06-10 16:09:25 -04:00
Showing only changes of commit 033330fd04 - Show all commits

View File

@ -20,7 +20,11 @@ class Client extends EventEmitter {
}); });
this.swarm.on('update', () => { this.swarm.on('update', () => {
console.log(`Peers count: ${this.swarm.connections.size}`); console.log(`Peers count: ${this.swarm.connections.size} (${this.swarm.peers.size})`);
this.swarm.peers.forEach((peer, peerInfo) => {
console.log(`Peer ${peer} is in topic(s) ${[...peerInfo.topics].map(topic => topic.toString('hex'))}`);
});
}); });
} }