Skip to content

Commit 1d1be76

Browse files
committed
feat: add 'ws' and 'wss' to peer connectivity
License: MIT Signed-off-by: Henrique Dias <[email protected]>
1 parent e7a398c commit 1d1be76

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/bundles/peer-locations.js

+11-1
Original file line numberDiff line numberDiff line change
@@ -252,10 +252,20 @@ const toLocationString = loc => {
252252
return city && country ? `${country}, ${city}` : country
253253
}
254254

255+
const additionalProtos = ['ws', 'wss']
256+
255257
const parseConnection = (multiaddr) => {
256258
const opts = multiaddr.toOptions()
259+
const protos = multiaddr.protoNames()
260+
let conn = `${opts.family}${opts.transport}`
261+
262+
for (const proto of additionalProtos) {
263+
if (protos.includes(proto)) {
264+
conn = `${conn}${proto}`
265+
}
266+
}
257267

258-
return `${opts.family}${opts.transport}`
268+
return conn
259269
}
260270

261271
const parseLatency = (latency) => {

0 commit comments

Comments
 (0)