We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12e7cd9 commit bab89d4Copy full SHA for bab89d4
src/indexer/req.go
@@ -14,7 +14,7 @@ func (ind Indexer) makeAbsURL(targetURL string) (pURL *url.URL, err error) {
14
ind.Lg.IfErrError("can not parse url", logseal.F{"error": err})
15
if !pURL.IsAbs() {
16
var fullURL string
17
- fullURL, err = url.JoinPath(ind.Conf.ServerURL, targetURL)
+ fullURL, _ = url.JoinPath(ind.Conf.ServerURL, targetURL)
18
pURL, err = ind.makeAbsURL(fullURL)
19
}
20
return
0 commit comments