diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2023-03-30 12:10:10 +0200 |
|---|---|---|
| committer | Jeroen Wijenbergh <46386452+jwijenbergh@users.noreply.github.com> | 2023-09-25 09:43:37 +0200 |
| commit | 3a62e2c16cf0f663595a9b0cb658ef2a060c9511 (patch) | |
| tree | 2fe51612486c51f7a8a9516f19492414f36931a9 | |
| parent | 78d7c364ada81f9f11bf3262f04058452b817797 (diff) | |
Client: Improve Let's Connect! not supported errors
| -rw-r--r-- | client/server.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/server.go b/client/server.go index 1075604..b3f7747 100644 --- a/client/server.go +++ b/client/server.go @@ -258,7 +258,7 @@ func (c *Client) AddInstituteServer(url string) (err error) { // Not supported with Let's Connect! if c.isLetsConnect() { - return errors.Errorf("discovery with Let's Connect is not supported") + return errors.Errorf("adding and Institute Access server with Let's Connect is not supported") } // Indicate that we're loading the server @@ -320,7 +320,7 @@ func (c *Client) AddSecureInternetHomeServer(orgID string) (err error) { // Not supported with Let's Connect! if c.isLetsConnect() { - return errors.Errorf("discovery with Let's Connect is not supported") + return errors.Errorf("adding a secure internet server with Let's Connect is not supported") } // Indicate that we're loading the server |
