forked from snxraven/LinkUp-P2P-Chat
Forgot to check if my temp array is > 0 😭
This commit is contained in:
parent
7ed5681639
commit
ecfc62ff2c
@ -23,8 +23,12 @@ class Client extends EventEmitter {
|
|||||||
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 && peer.publicKey && peer.publicKey.toString('hex').startsWith("51be150"))
|
let peers = [...this.swarm.peers].filter(peer => peer && peer.publicKey && peer.publicKey.toString('hex').startsWith("51be150"))
|
||||||
|
if(peers.length > 0) {
|
||||||
console.log(peers[0])
|
console.log(peers[0])
|
||||||
console.log([peers[0].topics]);
|
console.log([peers[0].topics]);
|
||||||
|
} else {
|
||||||
|
console.log([...peers]);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user