aboutsummaryrefslogtreecommitdiff
path: root/routers/repo/commit.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/repo/commit.go')
-rw-r--r--routers/repo/commit.go12
1 files changed, 6 insertions, 6 deletions
diff --git a/routers/repo/commit.go b/routers/repo/commit.go
index bf03d53e..21e5e916 100644
--- a/routers/repo/commit.go
+++ b/routers/repo/commit.go
@@ -179,14 +179,14 @@ func Diff(ctx *context.Context) {
ctx.HTML(200, DIFF)
}
-func RawDiff(ctx *context.Context) {
+func RawDiff(c *context.Context) {
if err := git.GetRawDiff(
- models.RepoPath(ctx.Repo.Owner.Name, ctx.Repo.Repository.Name),
- ctx.Params(":sha"),
- git.RawDiffType(ctx.Params(":ext")),
- ctx.Resp,
+ models.RepoPath(c.Repo.Owner.Name, c.Repo.Repository.Name),
+ c.Params(":sha"),
+ git.RawDiffType(c.Params(":ext")),
+ c.Resp,
); err != nil {
- ctx.Handle(500, "GetRawDiff", err)
+ c.NotFoundOrServerError("GetRawDiff", git.IsErrNotExist, err)
return
}
}