support file names with a comma inside.

This commit is contained in:
Chris Lu
2014-05-12 22:59:00 -07:00
parent 328aa48c6a
commit 68ceea3f8d
2 changed files with 2 additions and 1 deletions

View File

@@ -111,7 +111,7 @@ func (vs *VolumeServer) GetOrHeadHandler(w http.ResponseWriter, r *http.Request,
w.Header().Set("Content-Type", mtype)
}
if filename != "" {
w.Header().Set("Content-Disposition", "filename="+fileNameEscaper.Replace(filename))
w.Header().Set("Content-Disposition", "filename=\""+fileNameEscaper.Replace(filename)+"\"")
}
if ext != ".gz" {
if n.IsGzipped() {