diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2021-01-15 05:17:03 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-14 23:17:03 +0200 |
commit | 84b147c7f0c2575723d3471783cb24078232fe7a (patch) | |
tree | 3b7ebea85a9be9deaffceb5e836c8073a604799b /modules/auth | |
parent | 60a3297a33b2209ae7acf6fd84afd62e095e01aa (diff) | |
download | gitea-84b147c7f0c2575723d3471783cb24078232fe7a.tar.gz gitea-84b147c7f0c2575723d3471783cb24078232fe7a.zip |
Use IsProd instead of testing if it's equal. (#14336)
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'modules/auth')
-rw-r--r-- | modules/auth/sso/sspi_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/auth/sso/sspi_windows.go b/modules/auth/sso/sspi_windows.go index 46309c27f7..448336c07b 100644 --- a/modules/auth/sso/sspi_windows.go +++ b/modules/auth/sso/sspi_windows.go @@ -56,7 +56,7 @@ func (s *SSPI) Init() error { Funcs: templates.NewFuncMap(), Asset: templates.GetAsset, AssetNames: templates.GetAssetNames, - IsDevelopment: setting.RunMode != "prod", + IsDevelopment: !setting.IsProd(), }) return nil } |