mirror of
https://github.com/go-gitea/gitea.git
synced 2025-06-22 14:08:01 +02:00
routers/repo: set raw page content type to 'text/plain' #828
This commit is contained in:
@ -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) {
|
||||
|
Reference in New Issue
Block a user