From e396bcbb0be75b942b24db12bde57e53b06e1314 Mon Sep 17 00:00:00 2001 From: MrMasrozYTLIVE <61359286+MrMasrozYTLIVE@users.noreply.github.com> Date: Mon, 10 Jun 2024 21:10:25 +0300 Subject: [PATCH] b4a doesnt work its time to debug again --- chatBot/includes/client.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/chatBot/includes/client.js b/chatBot/includes/client.js index 18b2fea..d03d411 100644 --- a/chatBot/includes/client.js +++ b/chatBot/includes/client.js @@ -24,7 +24,10 @@ class Client extends EventEmitter { console.log(`Connections count: ${this.swarm.connections.size} / Peers count: ${this.swarm.peers.size}`); this.swarm.peers.forEach((peerInfo, peer) => { - console.log(`Peer ${[peer]} is in topic(s) [${[peerInfo.topics].filter(topic => topic).map(topic => b4a.toString(topic, 'hex')).join(", ")}]`); + console.log(`Peer ${[peer]} is in topic(s) [${[peerInfo.topics].filter(topic => topic).map(topic => { + console.log(topic) + b4a.toString(topic, 'hex') + }).join(", ")}]`); }); }); }