diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2021-10-20 22:37:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 16:37:19 +0200 |
commit | f494776931b71f83fdfdd4e68e850529c4b2614f (patch) | |
tree | 92b3779237dadfe042d3f93e9ddaaaac5d6d385f /modules/httpcache | |
parent | 0208ea0248782a994771cadf0af6a4125fdde723 (diff) | |
download | gitea-f494776931b71f83fdfdd4e68e850529c4b2614f.tar.gz gitea-f494776931b71f83fdfdd4e68e850529c4b2614f.zip |
Use a variable but a function for IsProd because of a slight performance increment (#17368)
Diffstat (limited to 'modules/httpcache')
-rw-r--r-- | modules/httpcache/httpcache.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/httpcache/httpcache.go b/modules/httpcache/httpcache.go index 35d4e6dfd8..11b63148d9 100644 --- a/modules/httpcache/httpcache.go +++ b/modules/httpcache/httpcache.go @@ -18,7 +18,7 @@ import ( // AddCacheControlToHeader adds suitable cache-control headers to response func AddCacheControlToHeader(h http.Header, d time.Duration) { - if setting.IsProd() { + if setting.IsProd { h.Set("Cache-Control", "private, max-age="+strconv.Itoa(int(d.Seconds()))) } else { h.Set("Cache-Control", "no-store") |