Use full country name in survey selection (#11)

This commit is contained in:
Dave Gallant
2021-01-01 18:23:11 -05:00
committed by GitHub
parent 4058594db2
commit 1fbcaf803d

View File

@@ -42,7 +42,7 @@ var connectCmd = &cobra.Command{
serverSelected := vpn.Server{}
for _, s := range *vpnServers {
serverSelection = append(serverSelection, fmt.Sprintf("%s (%s)", s.HostName, s.CountryShort))
serverSelection = append(serverSelection, fmt.Sprintf("%s (%s)", s.HostName, s.CountryLong))
}
selection := ""