From 56d8a8091ed2a1275ba9e208fbe30c9a0de1d129 Mon Sep 17 00:00:00 2001 From: MrMasrozYTLIVE <61359286+MrMasrozYTLIVE@users.noreply.github.com> Date: Mon, 10 Jun 2024 21:18:33 +0300 Subject: [PATCH] Yeah it actually works :yay: --- chatBot/includes/client.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/chatBot/includes/client.js b/chatBot/includes/client.js index 0047d63..ae51599 100644 --- a/chatBot/includes/client.js +++ b/chatBot/includes/client.js @@ -27,11 +27,11 @@ class Client extends EventEmitter { // Please do not try to understand what is going on here. I have no idea anyway. But it surprisingly works const peer = [peerId]; - const peerTopics = [peerInfo.topics].filter(topic => topic) - .map(topic => topic.map(top => b4a.toString(top, 'hex'))) - .join(", "); + const peerTopics = [peerInfo.topics] + .filter(topics => topics) + .map(topics => topics.map(topic => b4a.toString(topic, 'hex'))); - console.log(`Peer ${peer} is in topic(s) [${peerTopics}]`); + console.log(`Peer ${peer} is in topic(s) [${peerTopics.join(", ")}]`); }); }); }