Fixed bot crash on file attachment, added 2 more new events and topic ID to file message #6
@ -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(", ")}]`);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user