Don't use url.JoinPath.
It was introduced in Go 1.19.
This commit is contained in:
@@ -342,7 +342,12 @@ func groupBase(r *http.Request) (string, error) {
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
return u.JoinPath("/group/").String(), nil
|
||||
base := url.URL{
|
||||
Scheme: u.Scheme,
|
||||
Host: u.Host,
|
||||
Path: path.Join(u.Path, "/group/"),
|
||||
}
|
||||
return base.String(), nil
|
||||
}
|
||||
scheme := "https"
|
||||
if r.TLS == nil {
|
||||
|
||||
Reference in New Issue
Block a user