Fix legacy URL redirects (#3100)

This commit is contained in:
Ethan Koenig 2017-12-06 17:09:02 -08:00 committed by Lunny Xiao
parent 469ab99e9a
commit 54907dfbd1
2 changed files with 9 additions and 3 deletions

View file

@ -618,7 +618,11 @@ func RepoRefByType(refType RepoRefType) macaron.Handler {
if refType == RepoRefLegacy {
// redirect from old URL scheme to new URL scheme
ctx.Redirect(path.Join(setting.AppSubURL, strings.TrimSuffix(ctx.Req.URL.String(), ctx.Params("*")), ctx.Repo.BranchNameSubURL()))
ctx.Redirect(path.Join(
setting.AppSubURL,
strings.TrimSuffix(ctx.Req.URL.String(), ctx.Params("*")),
ctx.Repo.BranchNameSubURL(),
ctx.Repo.TreePath))
return
}
}