summaryrefslogtreecommitdiffstats
path: root/routers/repo/download.go
diff options
context:
space:
mode:
authorUnknwon <joe2010xtmf@163.com>2015-01-31 15:27:57 -0500
committerUnknwon <joe2010xtmf@163.com>2015-01-31 15:27:57 -0500
commit32152d23633c3bf3a1704212a53012d4937e519f (patch)
tree6a2066f1dc90e10de14aadfaf5e176fcecae6c67 /routers/repo/download.go
parentfb9dcfa921d72900936ddc7533861c33d847aa00 (diff)
downloadgitea-32152d23633c3bf3a1704212a53012d4937e519f.tar.gz
gitea-32152d23633c3bf3a1704212a53012d4937e519f.zip
routers/repo: set raw page content type to 'text/plain' #828
Diffstat (limited to 'routers/repo/download.go')
-rw-r--r--routers/repo/download.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/routers/repo/download.go b/routers/repo/download.go
index 6367c40e28..c5e18e005b 100644
--- a/routers/repo/download.go
+++ b/routers/repo/download.go
@@ -25,16 +25,16 @@ func ServeBlob(ctx *middleware.Context, blob *git.Blob) error {
buf = buf[:n]
}
- contentType, isTextFile := base.IsTextFile(buf)
+ _, isTextFile := base.IsTextFile(buf)
_, isImageFile := base.IsImageFile(buf)
- ctx.Resp.Header().Set("Content-Type", contentType)
+ ctx.Resp.Header().Set("Content-Type", "text/plain")
if !isTextFile && !isImageFile {
ctx.Resp.Header().Set("Content-Disposition", "attachment; filename="+path.Base(ctx.Repo.TreeName))
ctx.Resp.Header().Set("Content-Transfer-Encoding", "binary")
}
ctx.Resp.Write(buf)
- io.Copy(ctx.Resp, dataRc)
- return nil
+ _, err = io.Copy(ctx.Resp, dataRc)
+ return err
}
func SingleDownload(ctx *middleware.Context) {