mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-31 11:52:10 +00:00
Use a variable but a function for IsProd because of a slight performance increment (#17368)
This commit is contained in:
parent
0208ea0248
commit
f494776931
12 changed files with 19 additions and 22 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue