From ed828bc733de1d0b5ed9238281ebcbfd2d0e45ae Mon Sep 17 00:00:00 2001 From: "Quentin McGaw (desktop)" Date: Mon, 21 Jun 2021 13:32:03 +0000 Subject: [PATCH] Hotfix: VPN Unlimited variable choices --- internal/configuration/vpnunlimited.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/configuration/vpnunlimited.go b/internal/configuration/vpnunlimited.go index fb857809..859f528b 100644 --- a/internal/configuration/vpnunlimited.go +++ b/internal/configuration/vpnunlimited.go @@ -56,17 +56,17 @@ func (settings *Provider) readVPNUnlimited(r reader) (err error) { return err } - settings.ServerSelection.Countries, err = r.env.CSVInside("COUNTRY", constants.IvpnCountryChoices()) + settings.ServerSelection.Countries, err = r.env.CSVInside("COUNTRY", constants.VPNUnlimitedCountryChoices()) if err != nil { return err } - settings.ServerSelection.Cities, err = r.env.CSVInside("CITY", constants.IvpnCityChoices()) + settings.ServerSelection.Cities, err = r.env.CSVInside("CITY", constants.VPNUnlimitedCityChoices()) if err != nil { return err } - settings.ServerSelection.Hostnames, err = r.env.CSVInside("SERVER_HOSTNAME", constants.IvpnHostnameChoices()) + settings.ServerSelection.Hostnames, err = r.env.CSVInside("SERVER_HOSTNAME", constants.VPNUnlimitedHostnameChoices()) if err != nil { return err }