diff --git a/wgsd.go b/wgsd.go index 2277b00..c92f199 100644 --- a/wgsd.go +++ b/wgsd.go @@ -202,7 +202,7 @@ func getPeers(client wgctrlClient, zone *Zone, state request.Request) ( peers = append(peers, device.Peers...) } else { for _, peer := range device.Peers{ - if t := networkSizes(networks); t > 1 { // could be more complex, e.g allow user to specify a threshold + if t := networkSizes(peer.AllowedIPs); t > 1 { // could be more complex, e.g allow user to specify a threshold peers = append(peers, peer) } }