Commit 6455ae3a authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Fix error handling in groupBase.

parent a612e4d8
......@@ -351,7 +351,7 @@ func groupHandler(w http.ResponseWriter, r *http.Request) {
func groupBase(r *http.Request) (string, error) {
conf, err := group.GetConfiguration()
if err != nil {
return "", nil
return "", err
}
if conf.ProxyURL != "" {
return url.JoinPath(conf.ProxyURL, "/group/")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment