diff --git a/Passepartout-iOS/Scenes/AccountViewController.swift b/Passepartout-iOS/Scenes/AccountViewController.swift index e1085e7b..e10a70fc 100644 --- a/Passepartout-iOS/Scenes/AccountViewController.swift +++ b/Passepartout-iOS/Scenes/AccountViewController.swift @@ -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: diff --git a/Passepartout/Sources/AppConstants.swift b/Passepartout/Sources/AppConstants.swift index 6152c822..923ade19 100644 --- a/Passepartout/Sources/AppConstants.swift +++ b/Passepartout/Sources/AppConstants.swift @@ -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" ] diff --git a/Passepartout/Sources/Services/Infrastructure.swift b/Passepartout/Sources/Services/Infrastructure.swift index 1319a93e..260425d1 100644 --- a/Passepartout/Sources/Services/Infrastructure.swift +++ b/Passepartout/Sources/Services/Infrastructure.swift @@ -32,7 +32,7 @@ public struct Infrastructure: Codable { case pia = "PIA" - case protonVpn = "ProtonVPN" + case protonVPN = "ProtonVPN" case tunnelBear = "TunnelBear" diff --git a/Passepartout/Sources/Services/InfrastructureFactory.swift b/Passepartout/Sources/Services/InfrastructureFactory.swift index 07fcb50e..146d0fe4 100644 --- a/Passepartout/Sources/Services/InfrastructureFactory.swift +++ b/Passepartout/Sources/Services/InfrastructureFactory.swift @@ -59,7 +59,7 @@ public class InfrastructureFactory { public let allNames: [Infrastructure.Name] = [ .mullvad, .pia, - .protonVpn, + .protonVPN, .tunnelBear, .windscribe ]