summaryrefslogtreecommitdiff
path: root/internal/server/custom.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/server/custom.go')
-rw-r--r--internal/server/custom.go5
1 files changed, 4 insertions, 1 deletions
diff --git a/internal/server/custom.go b/internal/server/custom.go
index f8899b3..d376727 100644
--- a/internal/server/custom.go
+++ b/internal/server/custom.go
@@ -31,7 +31,10 @@ func (servers *Servers) GetCustomServer(url string) (*InstituteAccessServer, err
if server, ok := servers.CustomServers.Map[url]; ok {
return server, nil
}
- return nil, types.NewWrappedError("failed to get institute access server", fmt.Errorf("no custom server with URL: %s", url))
+ return nil, types.NewWrappedError(
+ "failed to get institute access server",
+ fmt.Errorf("no custom server with URL: %s", url),
+ )
}
func (servers *Servers) RemoveCustomServer(url string) {