Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit a74b8f7

Browse files
achingbrainAlan Shaw
authored and
Alan Shaw
committed
fix: sometimes no Addrs element is present in the response (#1037)
1 parent 70cdf25 commit a74b8f7

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/dht/findprovs.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,13 @@ module.exports = (send) => {
4444
const responses = res.Responses.map((r) => {
4545
const peerInfo = new PeerInfo(PeerId.createFromB58String(r.ID))
4646

47-
r.Addrs.forEach((addr) => {
48-
const ma = multiaddr(addr)
47+
if (r.Addrs) {
48+
r.Addrs.forEach((addr) => {
49+
const ma = multiaddr(addr)
4950

50-
peerInfo.multiaddrs.add(ma)
51-
})
51+
peerInfo.multiaddrs.add(ma)
52+
})
53+
}
5254

5355
return peerInfo
5456
})

0 commit comments

Comments
 (0)