From 3b7f0fbd1d722eba8d4cfaf45613c2bf4c33e9ae Mon Sep 17 00:00:00 2001 From: MrMasrozYTLIVE <61359286+MrMasrozYTLIVE@users.noreply.github.com> Date: Mon, 10 Jun 2024 21:09:33 +0300 Subject: [PATCH] replaced topic.toString with b4a.toString(topic) --- chatBot/includes/client.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chatBot/includes/client.js b/chatBot/includes/client.js index 5d7a67a..18b2fea 100644 --- a/chatBot/includes/client.js +++ b/chatBot/includes/client.js @@ -1,5 +1,6 @@ import Hyperswarm from 'hyperswarm'; import EventEmitter from 'node:events' +import b4a from "b4a"; class Client extends EventEmitter { constructor(botName) { @@ -23,7 +24,7 @@ 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 => topic.toString()).join(", ")}]`); + console.log(`Peer ${[peer]} is in topic(s) [${[peerInfo.topics].filter(topic => topic).map(topic => b4a.toString(topic, 'hex')).join(", ")}]`); }); }); }