Fixed app.js not sending user ID itself and only peers it knows #5

Merged
snxraven merged 26 commits from MiTask/LinkUp-P2P-Chat:main into main 2024-06-10 11:26:59 -04:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit d993090f8b - Show all commits

3
app.js
View File

@ -297,7 +297,8 @@ function sendMessage(e) {
onMessageAdded(config.userName, message, config.userAvatar);
let peersPublicKeys = [];
peersPublicKeys.push([...swarm.connections].map(peer => peer.remotePublicKey.toString('hex')).flat(1));
peersPublicKeys.push([...swarm.connections].map(peer => peer.remotePublicKey.toString('hex')));
peersPublicKeys = peersPublicKeys.flat(1);
peersPublicKeys.push(swarm.keyPair.publicKey.toString('hex'));
const messageObj = JSON.stringify({

View File

@ -22,7 +22,7 @@ class Client extends EventEmitter {
this.swarm.on('update', () => {
console.log(`Peers count: ${this.swarm.connections.size}`);
if(this.swarm.connections.size > 0) {
let peers = [...this.swarm.peers].filter(peer => peer && peer.publicKey && peer.publicKey.toString('hex').startsWith("51be150"))
let peers = [...this.swarm.peers].filter(peer => peer && peer.publicKey && peer.publicKey.toString('hex').startsWith("a4eb7f"))
if(peers.length > 0) {
console.log(peers[0])
console.log([peers[0].topics]);