summaryrefslogtreecommitdiffstats
path: root/routers/repo/commit.go
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-04-11 23:52:08 -0400
committerUnknown <joe2010xtmf@163.com>2014-04-11 23:52:08 -0400
commitd305448fa802a91ba81af1b78294f1658bcf834c (patch)
tree7bd274eb5c14c9d45c964e652b4c35d66de2cec9 /routers/repo/commit.go
parent3df8b2bef0f95f873e955840c6b12c3fe3dc9f8a (diff)
downloadgitea-d305448fa802a91ba81af1b78294f1658bcf834c.tar.gz
gitea-d305448fa802a91ba81af1b78294f1658bcf834c.zip
Mirror bug fix
Diffstat (limited to 'routers/repo/commit.go')
-rw-r--r--routers/repo/commit.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/routers/repo/commit.go b/routers/repo/commit.go
index 5a7bb589f7..fed1a6badd 100644
--- a/routers/repo/commit.go
+++ b/routers/repo/commit.go
@@ -52,6 +52,10 @@ func Commits(ctx *middleware.Context, params martini.Params) {
//both `git log branchName` and `git log commitId` work
commits, err := models.GetCommitsByRange(repoPath, branchName, page)
+ if err != nil {
+ ctx.Handle(500, "repo.Commits(get commits)", err)
+ return
+ }
ctx.Data["Username"] = userName
ctx.Data["Reponame"] = repoName