summaryrefslogtreecommitdiffstats
path: root/api/admin.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-02-12 08:06:41 -0500
committerChristopher Speller <crspeller@gmail.com>2016-02-12 08:06:41 -0500
commit0807fe5b05d9febe40442a64d89f2d16a951a26a (patch)
tree91d60f9a8433ad20ae49442ed6c9649a1193eaf5 /api/admin.go
parent3f50aa473405fe34ec618e0b3618f939d9ba8a99 (diff)
parent35e3b8c40fcec5516f888ed5ba578e3a94f49257 (diff)
downloadchat-0807fe5b05d9febe40442a64d89f2d16a951a26a.tar.gz
chat-0807fe5b05d9febe40442a64d89f2d16a951a26a.tar.bz2
chat-0807fe5b05d9febe40442a64d89f2d16a951a26a.zip
Merge pull request #2157 from mattermost/ie-cache-fix
Fixing IE expire issue
Diffstat (limited to 'api/admin.go')
-rw-r--r--api/admin.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/api/admin.go b/api/admin.go
index 5a645dc97..d04991353 100644
--- a/api/admin.go
+++ b/api/admin.go
@@ -121,7 +121,6 @@ func getConfig(c *Context, w http.ResponseWriter, r *http.Request) {
json = cfg.ToJson()
w.Header().Set("Cache-Control", "no-cache, no-store, must-revalidate")
- w.Header().Set("Expires", "0")
w.Write([]byte(json))
}