From 97dbd95d0a91e8603fe354564f44b6020efcfa72 Mon Sep 17 00:00:00 2001 From: Don Bowman Date: Thu, 13 Aug 2015 23:15:55 +0000 Subject: [PATCH] 715b595e259acc8dec51273136acbd3e3f4cbda2 reverted my change a49d4d98baa3a723036ceb5b83d76c8cb1db671e, 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). --- routers/repo/download.go | 7 +------ 1 file changed, 1 insertion(+), 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))