fixed error when comparing locations

This commit is contained in:
chriss-de 2023-01-11 09:12:15 +01:00
parent cc0872cfab
commit ae2d6d4220

View file

@ -472,7 +472,7 @@ func (l1 *Location) Equal(l2 *Location) bool {
return false
}
if !l1.ProxyInterceptErrors != l2.ProxyInterceptErrors {
if l1.ProxyInterceptErrors != l2.ProxyInterceptErrors {
return false
}