From 1fbcaf803ddc7909d98ca965d9fd73928b688374 Mon Sep 17 00:00:00 2001 From: Dave Gallant Date: Fri, 1 Jan 2021 18:23:11 -0500 Subject: [PATCH] Use full country name in survey selection (#11) --- cmd/connect.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/connect.go b/cmd/connect.go index 21cbbc9..057c7ca 100644 --- a/cmd/connect.go +++ b/cmd/connect.go @@ -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 := ""