diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2024-04-09 05:26:41 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-08 21:26:41 +0000 |
commit | 908426aa0fcc58961c345994f0f66056f6cf5f48 (patch) | |
tree | 496d1d497da5545cd3c1dd1319c7f2184cf5b420 /routers/web/repo/issue.go | |
parent | ff7aab44032cbb22cb6696a1939d1f619621f067 (diff) | |
download | gitea-908426aa0fcc58961c345994f0f66056f6cf5f48.tar.gz gitea-908426aa0fcc58961c345994f0f66056f6cf5f48.zip |
Fix missed doer (#30231)
Fix #29879
Co-authored-by: Giteabot <teabot@gitea.io>
Diffstat (limited to 'routers/web/repo/issue.go')
-rw-r--r-- | routers/web/repo/issue.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/routers/web/repo/issue.go b/routers/web/repo/issue.go index 6c2d4a7390..e4f2e9a2bc 100644 --- a/routers/web/repo/issue.go +++ b/routers/web/repo/issue.go @@ -2179,7 +2179,7 @@ func GetIssueInfo(ctx *context.Context) { } } - ctx.JSON(http.StatusOK, convert.ToIssue(ctx, issue)) + ctx.JSON(http.StatusOK, convert.ToIssue(ctx, ctx.Doer, issue)) } // UpdateIssueTitle change issue's title @@ -2709,7 +2709,7 @@ func SearchIssues(ctx *context.Context) { } ctx.SetTotalCountHeader(total) - ctx.JSON(http.StatusOK, convert.ToIssueList(ctx, issues)) + ctx.JSON(http.StatusOK, convert.ToIssueList(ctx, ctx.Doer, issues)) } func getUserIDForFilter(ctx *context.Context, queryName string) int64 { @@ -2879,7 +2879,7 @@ func ListIssues(ctx *context.Context) { } ctx.SetTotalCountHeader(total) - ctx.JSON(http.StatusOK, convert.ToIssueList(ctx, issues)) + ctx.JSON(http.StatusOK, convert.ToIssueList(ctx, ctx.Doer, issues)) } func BatchDeleteIssues(ctx *context.Context) { |