From 3a62e2c16cf0f663595a9b0cb658ef2a060c9511 Mon Sep 17 00:00:00 2001 From: jwijenbergh Date: Thu, 30 Mar 2023 12:10:10 +0200 Subject: Client: Improve Let's Connect! not supported errors --- client/server.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'client') 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 -- cgit v1.2.3