This repository was archived by the owner on Mar 10, 2020. It is now read-only.
File tree 1 file changed +19
-19
lines changed
1 file changed +19
-19
lines changed Original file line number Diff line number Diff line change @@ -21,9 +21,9 @@ module.exports = (send) => {
21
21
return callback ( err )
22
22
}
23
23
24
+ // go-ipfs <= 0.4.4
24
25
if ( result . Strings ) {
25
- // go-ipfs <= 0.4.4
26
- callback ( null , result . Strings . map ( ( p ) => {
26
+ return callback ( null , result . Strings . map ( ( p ) => {
27
27
const res = { }
28
28
29
29
if ( verbose ) {
@@ -40,26 +40,26 @@ module.exports = (send) => {
40
40
41
41
return res
42
42
} ) )
43
- } else if ( result . Peers ) {
44
- // go-ipfs >= 0.4.5
45
- callback ( null , result . Peers . map ( ( p ) => {
46
- const res = {
47
- addr : multiaddr ( p . Addr ) ,
48
- peer : PeerId . createFromB58String ( p . Peer ) ,
49
- muxer : p . Muxer
50
- }
43
+ }
51
44
52
- if ( p . Latency ) {
53
- res . latency = p . Latency
54
- }
45
+ // go-ipfs >= 0.4.5
46
+ callback ( null , ( result . Peers || [ ] ) . map ( ( p ) => {
47
+ const res = {
48
+ addr : multiaddr ( p . Addr ) ,
49
+ peer : PeerId . createFromB58String ( p . Peer ) ,
50
+ muxer : p . Muxer
51
+ }
55
52
56
- if ( p . Streams ) {
57
- res . streams = p . Streams
58
- }
53
+ if ( p . Latency ) {
54
+ res . latency = p . Latency
55
+ }
59
56
60
- return res
61
- } ) )
62
- }
57
+ if ( p . Streams ) {
58
+ res . streams = p . Streams
59
+ }
60
+
61
+ return res
62
+ } ) )
63
63
} )
64
64
} )
65
65
}
You can’t perform that action at this time.
0 commit comments