routers/repo: allow shorter SHA to download archive (#3834)

SHA length from 7-40 is now supported.
master
Unknwon 2017-02-12 18:28:42 -05:00
parent ab78d4e2b7
commit d21767dc9f
No known key found for this signature in database
GPG Key ID: 25B575AE3213B2B3
1 changed files with 3 additions and 3 deletions

View File

@ -311,14 +311,14 @@ func Download(ctx *context.Context) {
ctx.Handle(500, "GetTagCommit", err)
return
}
} else if len(refName) == 40 {
} else if len(refName) >= 7 && len(refName) <= 40 {
commit, err = gitRepo.GetCommit(refName)
if err != nil {
ctx.Handle(404, "GetCommit", nil)
ctx.NotFound()
return
}
} else {
ctx.Handle(404, "Download", nil)
ctx.NotFound()
return
}