aboutsummaryrefslogtreecommitdiffstats
path: root/modules/templates/base.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2021-10-20 22:37:19 +0800
committerGitHub <noreply@github.com>2021-10-20 16:37:19 +0200
commitf494776931b71f83fdfdd4e68e850529c4b2614f (patch)
tree92b3779237dadfe042d3f93e9ddaaaac5d6d385f /modules/templates/base.go
parent0208ea0248782a994771cadf0af6a4125fdde723 (diff)
downloadgitea-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/templates/base.go')
-rw-r--r--modules/templates/base.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/templates/base.go b/modules/templates/base.go
index cb83143bd3..f753bfbe4e 100644
--- a/modules/templates/base.go
+++ b/modules/templates/base.go
@@ -91,7 +91,7 @@ func HTMLRenderer() *render.Render {
Funcs: NewFuncMap(),
Asset: GetAsset,
AssetNames: GetAssetNames,
- IsDevelopment: !setting.IsProd(),
+ IsDevelopment: !setting.IsProd,
DisableHTTPErrorRendering: true,
})
}