Applied JeordyR's changes

This commit is contained in:
Quentin McGaw (desktop)
2020-02-22 17:55:49 +00:00
parent 5ee4e2fde0
commit 3ad60349db
3 changed files with 4 additions and 1 deletions

View File

@@ -11,7 +11,7 @@ import (
// GetMullvadCountry obtains the country for the Mullvad server from the
// environment variable COUNTRY
func (p *paramsReader) GetMullvadCountry() (country models.MullvadCountry, err error) {
choices := append(constants.MullvadCityChoices(), "")
choices := append(constants.MullvadCountryChoices(), "")
s, err := p.envParams.GetValueIfInside("COUNTRY", choices)
return models.MullvadCountry(strings.ToLower(s)), err
}