diff options
| author | Jaroslav Svoboda <multiflexi@users.noreply.github.com> | 2024-10-30 17:11:51 +0100 |
|---|---|---|
| committer | Jeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com> | 2024-11-04 11:02:40 +0100 |
| commit | 54e0224e58ad1b2556de1502c3a5a2b2ded33b7b (patch) | |
| tree | 291e8b3047698f8d1950b45806c07e0a5a9c527e | |
| parent | d47796499fb847c0a03bdca100b10d52fadfe71a (diff) | |
fix typo
| -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 8c8f338..708a4df 100644 --- a/client/client.go +++ b/client/client.go @@ -477,7 +477,7 @@ func (c *Client) GetConfig(ck *cookie.Cookie, identifier string, _type srvtypes. if err != nil { if startup { if errors.Is(err, api.ErrAuthorizeDisabled) { - return nil, i18nerr.Newf("The client tried to autoconnect to the VPN server: '%s', but you need to authorizate again. Please manually connect again.", identifier) + return nil, i18nerr.Newf("The client tried to autoconnect to the VPN server: '%s', but you need to authorize again. Please manually connect again.", identifier) } return nil, i18nerr.Wrapf(err, "The client tried to autoconnect to the VPN server: '%s', but the operation failed to complete", identifier) } |
