Fixed bot crash on file attachment, added 2 more new events and topic ID to file message #6

Merged
snxraven merged 18 commits from MiTask/LinkUp-P2P-Chat:main into main 2024-06-10 16:09:25 -04:00
Showing only changes of commit 56d8a8091e - Show all commits

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
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(", ")}]`);
});
});
}