From dfab6e2d1c821408792a0d9b602eec7097f3840d Mon Sep 17 00:00:00 2001 From: Giteabot Date: Mon, 6 Mar 2023 16:05:42 -0500 Subject: [PATCH] Fix incorrect redirect link of delete org project (#23327) (#23339) Backport #23327 A part of https://github.com/go-gitea/gitea/pull/22865/commits The old code will cause 500 error. Co-authored-by: yp05327 <576951401@qq.com> Co-authored-by: John Olheiser --- routers/web/org/projects.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routers/web/org/projects.go b/routers/web/org/projects.go index 6449d12de1..046100c72e 100644 --- a/routers/web/org/projects.go +++ b/routers/web/org/projects.go @@ -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", }) }