mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-17 22:19:08 +00:00
Fix enum case
This commit is contained in:
parent
44334486f7
commit
2bc7c031c2
@ -68,7 +68,7 @@ class AccountViewController: UIViewController, TableModelHost {
|
||||
case .pia:
|
||||
return V.pia(name.rawValue)
|
||||
|
||||
case .protonVpn:
|
||||
case .protonVPN:
|
||||
return V.protonvpn(name.rawValue)
|
||||
|
||||
case .tunnelBear:
|
||||
|
@ -165,14 +165,14 @@ public class AppConstants {
|
||||
}
|
||||
|
||||
public static let guidances: [Infrastructure.Name: String] = [
|
||||
.protonVpn: "https://account.protonvpn.com/settings",
|
||||
.protonVPN: "https://account.protonvpn.com/settings",
|
||||
.windscribe: "https://windscribe.com/getconfig/openvpn"
|
||||
]
|
||||
|
||||
public static let referrals: [Infrastructure.Name: String] = [
|
||||
.mullvad: "https://mullvad.net/en/account/create/",
|
||||
.pia: "https://www.privateinternetaccess.com/pages/buy-vpn/",
|
||||
.protonVpn: "https://protonvpn.net/?aid=keeshux",
|
||||
.protonVPN: "https://protonvpn.net/?aid=keeshux",
|
||||
.tunnelBear: "https://click.tunnelbear.com/aff_c?offer_id=2&aff_id=7464",
|
||||
.windscribe: "https://secure.link/kCsD0prd"
|
||||
]
|
||||
|
@ -32,7 +32,7 @@ public struct Infrastructure: Codable {
|
||||
|
||||
case pia = "PIA"
|
||||
|
||||
case protonVpn = "ProtonVPN"
|
||||
case protonVPN = "ProtonVPN"
|
||||
|
||||
case tunnelBear = "TunnelBear"
|
||||
|
||||
|
@ -59,7 +59,7 @@ public class InfrastructureFactory {
|
||||
public let allNames: [Infrastructure.Name] = [
|
||||
.mullvad,
|
||||
.pia,
|
||||
.protonVpn,
|
||||
.protonVPN,
|
||||
.tunnelBear,
|
||||
.windscribe
|
||||
]
|
||||
|
Loading…
Reference in New Issue
Block a user