From d647d02c2f9816effd50b2eea45aa65fb1b4047c Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Sat, 26 Nov 2016 11:26:03 -0200 Subject: [PATCH] Fix Chrome not liking commas --- routers/repo/download.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/routers/repo/download.go b/routers/repo/download.go index aba0971a4a..85e9fc64c9 100644 --- a/routers/repo/download.go +++ b/routers/repo/download.go @@ -7,6 +7,7 @@ package repo import ( "fmt" "io" + "strings" "code.gitea.io/git" @@ -24,6 +25,9 @@ func ServeData(ctx *context.Context, name string, reader io.Reader) error { ctx.Resp.Header().Set("Cache-Control", "public,max-age=86400") + // Google Chrome dislike commas in filenames, so let's change it to a space + name = strings.Replace(name, ",", " ", -1) + if base.IsTextFile(buf) || ctx.QueryBool("render") { ctx.Resp.Header().Set("Content-Type", "text/plain; charset=utf-8") } else if base.IsImageFile(buf) || base.IsPDFFile(buf) {