summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2024-05-31 13:53:34 +0200
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2024-05-31 13:53:34 +0200
commit1479f55e138fd8dcedac98ace5c7225036b6f462 (patch)
tree08296e43d7fe1ea1e9cb4d8d027c670fb7d86d3a
parent9f9c74cb55f3a0be1799669dca08546747cbf3c2 (diff)
Client: Add punctuation for Newf error
-rw-r--r--client/client.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/client.go b/client/client.go
index 8cf2bef..14b5861 100644
--- a/client/client.go
+++ b/client/client.go
@@ -422,7 +422,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 authorizate 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)
}