summaryrefslogtreecommitdiffstats
path: root/api/file.go
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2015-10-06 09:09:52 -0400
committerJoramWilander <jwawilander@gmail.com>2015-10-06 09:09:52 -0400
commitab32445a6836d8524c4eb02542656ef38b7503a8 (patch)
treef5cc9f900c3a99f3d58e5dcbd7a99d5edf896157 /api/file.go
parent4c297d05f7cfbcfc4011fa25b8badfc6883c2c22 (diff)
downloadchat-ab32445a6836d8524c4eb02542656ef38b7503a8.tar.gz
chat-ab32445a6836d8524c4eb02542656ef38b7503a8.tar.bz2
chat-ab32445a6836d8524c4eb02542656ef38b7503a8.zip
Use http writer to automatically set content-type for file gets.
Diffstat (limited to 'api/file.go')
-rw-r--r--api/file.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/api/file.go b/api/file.go
index 5dc1db650..bb9aa00d8 100644
--- a/api/file.go
+++ b/api/file.go
@@ -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())