fix format error

This commit is contained in:
George Harvey 2021-04-06 15:26:27 +01:00 committed by GitHub
parent b213b48876
commit b5bd1bd874
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -201,7 +201,7 @@ func getPeers(client wgctrlClient, zone *Zone, state request.Request) (
if !zone.onlySubnets {
peers = append(peers, device.Peers...)
} else {
for _, peer in range device.Peers{
for _, peer := range device.Peers{
if t := networkSizes(networks); t > 1 { // could be more complex, e.g allow user to specify a threshold
peers = append(peers, peer)
}