Make connect rule interface explicit
Shouldn't make a difference but you never know with iOS.
This commit is contained in:
parent
a17a3f7e48
commit
b1e2d60f37
|
@ -573,7 +573,9 @@ public class ConnectionService: Codable {
|
|||
rule.ssidMatch = reallyTrustedWifis
|
||||
rules.append(rule)
|
||||
}
|
||||
rules.append(NEOnDemandRuleConnect())
|
||||
let connection = NEOnDemandRuleConnect()
|
||||
connection.interfaceTypeMatch = .any
|
||||
rules.append(connection)
|
||||
|
||||
return NetworkExtensionVPNConfiguration(protocolConfiguration: protocolConfiguration, onDemandRules: rules)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue