diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-03-06 19:58:19 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2024-03-06 19:58:19 +0100 |
| commit | b865dbc0bc8b8610fe9285c6f723fec11b33bcbe (patch) | |
| tree | 3dbd51a0ee6566d777d410a715a48f42ce5b15dd /client/client.go | |
| parent | caad59b57d06f6925f2b12f1686bd96e617272f5 (diff) | |
Client: Make the get config otain server error less vague
Diffstat (limited to 'client/client.go')
| -rw-r--r-- | client/client.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/client.go b/client/client.go index f00d56e..cb6ecc6 100644 --- a/client/client.go +++ b/client/client.go @@ -436,7 +436,7 @@ func (c *Client) GetConfig(ck *cookie.Cookie, identifier string, _type srvtypes. } return nil, i18nerr.Wrapf(err, "The client tried to autoconnect to the VPN server: '%s', but the operation failed to complete", identifier) } - return nil, i18nerr.Wrapf(err, "Server: '%s' could not be obtained", identifier) + return nil, i18nerr.Wrapf(err, "Server: '%s' could not be connected to", identifier) } cfg, err := c.Servers.ConnectWithCallbacks(ck.Context(), srv, pTCP) |
