Remove unused field from peer state (#939)

On mobile system the direct flag is unused
This commit is contained in:
Zoltan Papp
2023-06-07 11:32:49 +02:00
committed by GitHub
parent 7d1b6ea1fc
commit 93608ae163
2 changed files with 0 additions and 3 deletions

View File

@@ -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}
}