Yeah it actually works :yay:

This commit is contained in:
MrMasrozYTLIVE 2024-06-10 21:18:33 +03:00
parent 4ec0be2774
commit 56d8a8091e

View File

@ -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 // Please do not try to understand what is going on here. I have no idea anyway. But it surprisingly works
const peer = [peerId]; const peer = [peerId];
const peerTopics = [peerInfo.topics].filter(topic => topic) const peerTopics = [peerInfo.topics]
.map(topic => topic.map(top => b4a.toString(top, 'hex'))) .filter(topics => topics)
.join(", "); .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(", ")}]`);
}); });
}); });
} }