mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-24 08:20:31 +08:00
feat: remove url.JoinPath() to be compatible with Go 1.17 (#1995)
This commit is contained in:
parent
926e73ed1b
commit
f6f4d44444
@ -18,9 +18,9 @@ import (
|
|||||||
"bytes"
|
"bytes"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/http"
|
"net/http"
|
||||||
"net/url"
|
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
|
"github.com/casdoor/casdoor/util"
|
||||||
"golang.org/x/net/html"
|
"golang.org/x/net/html"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -206,10 +206,7 @@ func getFaviconFileBuffer(client *http.Client, email string) (*bytes.Buffer, str
|
|||||||
}
|
}
|
||||||
|
|
||||||
if !strings.HasPrefix(faviconUrl, "http") {
|
if !strings.HasPrefix(faviconUrl, "http") {
|
||||||
faviconUrl, err = url.JoinPath(htmlUrl, faviconUrl)
|
faviconUrl = util.UrlJoin(htmlUrl, faviconUrl)
|
||||||
if err != nil {
|
|
||||||
return nil, "", err
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user