From: 6543 <6543@obermui.de> Date: Fri, 17 Jan 2020 15:25:46 +0000 (+0100) Subject: fix (#9838) X-Git-Tag: v1.10.3~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c975287149cc8abfdeb0f0f3f11e33e6cd40f18b;p=gitea.git fix (#9838) --- diff --git a/routers/repo/compare.go b/routers/repo/compare.go index a307109ba0..832f976760 100644 --- a/routers/repo/compare.go +++ b/routers/repo/compare.go @@ -373,7 +373,8 @@ func CompareDiff(ctx *context.Context) { return } defer headGitRepo.Close() - if err := parseBaseRepoInfo(ctx, headRepo); err != nil { + var err error + if err = parseBaseRepoInfo(ctx, headRepo); err != nil { ctx.ServerError("parseBaseRepoInfo", err) return } @@ -415,6 +416,11 @@ func CompareDiff(ctx *context.Context) { beforeCommitID := ctx.Data["BeforeCommitID"].(string) afterCommitID := ctx.Data["AfterCommitID"].(string) + if ctx.Data["Assignees"], err = ctx.Repo.Repository.GetAssignees(); err != nil { + ctx.ServerError("GetAssignees", err) + return + } + ctx.Data["Title"] = "Comparing " + base.ShortSha(beforeCommitID) + "..." + base.ShortSha(afterCommitID) ctx.Data["IsRepoToolbarCommits"] = true