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 }