diff options
author | Don Bowman <don.waterloo@gmail.com> | 2015-08-13 23:15:55 +0000 |
---|---|---|
committer | Don Bowman <don.waterloo@gmail.com> | 2015-08-13 23:21:49 +0000 |
commit | 4137426c8836686f06e6de21e7c586df3e798c3a (patch) | |
tree | da6e75dcfce850c363321fb0a229c89fa140effb /routers/repo/download.go | |
parent | aede5cdb04fdbf74d9c602062fdece9f408e90f4 (diff) | |
download | gitea-4137426c8836686f06e6de21e7c586df3e798c3a.tar.gz gitea-4137426c8836686f06e6de21e7c586df3e798c3a.zip |
43bfee0d4872932c1da185e8367e21795bc4ceb5 reverted my change
423b1c69be7828c331a47467b66217d190e916b9, which in turn
causes all content to be served as text/plain. Let go decide
what the mime type is (e.g. text/html instead of text/plain).
Diffstat (limited to 'routers/repo/download.go')
-rw-r--r-- | routers/repo/download.go | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/routers/repo/download.go b/routers/repo/download.go index c71f8d293e..a73ecb37e2 100644 --- a/routers/repo/download.go +++ b/routers/repo/download.go @@ -26,12 +26,7 @@ func ServeBlob(ctx *middleware.Context, blob *git.Blob) error { } _, isTextFile := base.IsTextFile(buf) - if isTextFile { - charset, _ := base.DetectEncoding(buf) - if charset != "UTF-8" { - ctx.Resp.Header().Set("Content-Type", "text/plain; charset="+charset) - } - } else { + if ! isTextFile { _, isImageFile := base.IsImageFile(buf) if !isImageFile { ctx.Resp.Header().Set("Content-Disposition", "attachment; filename="+path.Base(ctx.Repo.TreeName)) |