From 8a6cf221a9c507959af649965b2c8fcee8a53d89 Mon Sep 17 00:00:00 2001 From: "Quentin McGaw (desktop)" Date: Sun, 30 May 2021 20:27:57 +0000 Subject: [PATCH] Fix: HideMyAss hostnames choices --- internal/configuration/hidemyass.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/configuration/hidemyass.go b/internal/configuration/hidemyass.go index 9ec03051..e1065d0a 100644 --- a/internal/configuration/hidemyass.go +++ b/internal/configuration/hidemyass.go @@ -52,7 +52,7 @@ func (settings *Provider) readHideMyAss(r reader) (err error) { return err } - settings.ServerSelection.Hostnames, err = r.env.CSVInside("SERVER_HOSTNAME", constants.TorguardHostnamesChoices()) + settings.ServerSelection.Hostnames, err = r.env.CSVInside("SERVER_HOSTNAME", constants.HideMyAssHostnameChoices()) if err != nil { return err }