forked from snxraven/LinkUp-P2P-Chat
Compare commits
No commits in common. "5d6728f39f75d3da4bb9cbf3623b1e9fe822b59a" and "2ed13e50f796ba68d2ff652e363fc328e10c0622" have entirely different histories.
5d6728f39f
...
2ed13e50f7
2
app.js
2
app.js
@ -297,7 +297,7 @@ function sendMessage(e) {
|
|||||||
onMessageAdded(config.userName, message, config.userAvatar);
|
onMessageAdded(config.userName, message, config.userAvatar);
|
||||||
|
|
||||||
let peersPublicKeys = [];
|
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.push(swarm.keyPair.publicKey.toString('hex'));
|
peersPublicKeys.push(swarm.keyPair.publicKey.toString('hex'));
|
||||||
|
|
||||||
const messageObj = JSON.stringify({
|
const messageObj = JSON.stringify({
|
||||||
|
@ -22,9 +22,10 @@ class Client extends EventEmitter {
|
|||||||
this.swarm.on('update', () => {
|
this.swarm.on('update', () => {
|
||||||
console.log(`Peers count: ${this.swarm.connections.size}`);
|
console.log(`Peers count: ${this.swarm.connections.size}`);
|
||||||
if(this.swarm.connections.size > 0) {
|
if(this.swarm.connections.size > 0) {
|
||||||
let peers = [...this.swarm.peers].filter(peer => peer.remotePublicKey.toString('hex').startsWith("51be150"))
|
let arr = [];
|
||||||
console.log(peers[0])
|
[...this.swarm.peers].forEach(peer => arr.push([peer.topics]));
|
||||||
console.log([peers[0].topics]);
|
console.log([...this.swarm.peers])
|
||||||
|
console.log(arr);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user