fixed error when comparing locations
This commit is contained in:
parent
cc0872cfab
commit
ae2d6d4220
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue