Merge pull request #937 from mattermost/plt-230

PLT-230 Use HTTP writer to automatically set content-type for file GETs.
Этот коммит содержится в:
Corey Hulen
2015-10-06 08:43:42 -07:00
родитель 429cc6e0e6 ab32445a68
Коммит 3543dc5ff3

Просмотреть файл

@@ -23,7 +23,6 @@ import (
"image/jpeg"
"io"
"io/ioutil"
"mime"
"net/http"
"net/url"
"os"
@@ -407,7 +406,7 @@ func getFile(c *Context, w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", "max-age=2592000, public")
w.Header().Set("Content-Length", strconv.Itoa(len(f)))
w.Header().Set("Content-Type", mime.TypeByExtension(filepath.Ext(filename)))
w.Header().Del("Content-Type") // Content-Type will be set automatically by the http writer
// attach extra headers to trigger a download on IE and Edge
ua := user_agent.New(r.UserAgent())