Browse Source

fix download

tags/v1.2.0-rc1
slene 12 years ago
parent
commit
417d861be6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      routers/repo/repo.go

+ 1
- 1
routers/repo/repo.go View File

@@ -243,7 +243,7 @@ func SingleDownload(ctx *middleware.Context, params martini.Params) {
contentType, isTextFile := base.IsTextFile(data)
_, isImageFile := base.IsImageFile(data)
ctx.Res.Header().Set("Content-Type", contentType)
if !isTextFile {
if !isTextFile && !isImageFile {
ctx.Res.Header().Set("Content-Disposition", "attachment; filename="+filepath.Base(treename))
ctx.Res.Header().Set("Content-Transfer-Encoding", "binary")
}


Loading…
Cancel
Save