From e7b89888e158b76a27c101bbfa1775ccd6b55ce9 Mon Sep 17 00:00:00 2001 From: yp05327 <576951401@qq.com> Date: Tue, 7 Mar 2023 03:05:26 +0900 Subject: [PATCH] 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. --- 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", }) }