Skip to content

Commit

Permalink
Allow relay selector to filter DAITA enabled relays
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Petersson committed Aug 21, 2024
1 parent b26659e commit 8389a57
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,8 @@ public struct NoRelaysSatisfyingConstraintsError: LocalizedError {
public init(_ reason: NoRelaysSatisfyingConstraintsReason) {
self.reason = reason
}

public init(_ reason: NoRelaysSatisfyingConstraintsReason) {
self.reason = reason
}
}

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ final class SimulatorTunnelProviderManager: NSObject, VPNTunnelProviderManagerPr
}

override func isEqual(_ object: Any?) -> Bool {
guard let other = object as? Self else { return false }
return self.identifier == other.identifier
guard let multihopOther = object as? Self else { return false }
return self.identifier == multihopOther.identifier
}
}

Expand Down

0 comments on commit 8389a57

Please sign in to comment.