fix: remove error from valid check (#456)

This commit is contained in:
Lorenz Herzberger 2024-10-15 12:56:00 +02:00 committed by GitHub
parent 2a5b7c49c8
commit 0b17e93e9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -256,7 +256,7 @@ func IsLegitMachineAddress(address string) (active bool, err error) {
// Check the status code // Check the status code
if resp.StatusCode != http.StatusOK { if resp.StatusCode != http.StatusOK {
log.Print("[app] [Monitor] Error: unexpected status code: " + string(body)) log.Print("[app] [Monitor] unexpected status code: " + string(body))
return return
} }