diff options
Diffstat (limited to 'internal/server/instituteaccess.go')
| -rw-r--r-- | internal/server/instituteaccess.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/server/instituteaccess.go b/internal/server/instituteaccess.go index f76323c..9b6f735 100644 --- a/internal/server/instituteaccess.go +++ b/internal/server/instituteaccess.go @@ -46,7 +46,10 @@ func (servers *Servers) GetInstituteAccess(url string) (*InstituteAccessServer, if server, ok := servers.InstituteServers.Map[url]; ok { return server, nil } - return nil, types.NewWrappedError("failed to get institute access server", fmt.Errorf("no institute access server with URL: %s", url)) + return nil, types.NewWrappedError( + "failed to get institute access server", + fmt.Errorf("no institute access server with URL: %s", url), + ) } func (servers *Servers) RemoveInstituteAccess(url string) { |
