Skip to content

Commit 71ca3b6

Browse files
committed
Fix Host.isEqual
1 parent 0b573bd commit 71ca3b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Foundation/Host.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ open class Host: NSObject {
7676

7777
open func isEqual(to aHost: Host) -> Bool {
7878
if self === aHost { return true }
79-
return _addresses.firstIndex { aHost._addresses.contains($0) } != nil
79+
return addresses.firstIndex { aHost.addresses.contains($0) } != nil
8080
}
8181

8282
internal func _resolveCurrent() {

0 commit comments

Comments
 (0)