1
1
mirror of https://github.com/go-gitea/gitea synced 2025-08-12 12:38:20 +00:00

Fix redirect with non-ascii branch names (#4764) (#4887)

This commit is contained in:
SagePtr
2018-09-07 22:32:46 +02:00
committed by techknowlogick
parent 1901f35980
commit d918e63bc5
49 changed files with 786 additions and 8 deletions

View File

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