diff --git a/chatBot/includes/client.js b/chatBot/includes/client.js index 75e7b79..335767e 100644 --- a/chatBot/includes/client.js +++ b/chatBot/includes/client.js @@ -23,7 +23,7 @@ class Client extends EventEmitter { console.log(`Peers count: ${this.swarm.connections.size}`); if(this.swarm.connections.size > 0) { let arr = []; - [...this.swarm.peers].forEach(peer => arr.push([...peer.topics])); + [...this.swarm.peers].forEach(peer => arr.push([peer.topics])); console.log(arr); process.exit(-1); }