diff --git a/client/android/client.go b/client/android/client.go index e5dd9db9f..63c54f4b3 100644 --- a/client/android/client.go +++ b/client/android/client.go @@ -118,11 +118,9 @@ func (c *Client) PeersList() *PeerInfoArray { p.IP, p.FQDN, p.ConnStatus.String(), - p.Direct, } peerInfos[n] = pi } - return &PeerInfoArray{items: peerInfos} } diff --git a/client/android/peer_notifier.go b/client/android/peer_notifier.go index b998fa00e..9f6fcddd6 100644 --- a/client/android/peer_notifier.go +++ b/client/android/peer_notifier.go @@ -5,7 +5,6 @@ type PeerInfo struct { IP string FQDN string ConnStatus string // Todo replace to enum - Direct bool } // PeerInfoCollection made for Java layer to get non default types as collection