Fix incorrect redirect link of delete org project (#23327)
A part of https://github.com/go-gitea/gitea/pull/22865/commits The old code will cause 500 error.
This commit is contained in:
parent
3f547c7afb
commit
e7b89888e1
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ func DeleteProject(ctx *context.Context) {
|
|||
}
|
||||
|
||||
ctx.JSON(http.StatusOK, map[string]interface{}{
|
||||
"redirect": ctx.Repo.RepoLink + "/projects",
|
||||
"redirect": ctx.ContextUser.HomeLink() + "/-/projects",
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue