diff options
Diffstat (limited to 'client')
| -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 |
