0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-07-04 22:57:34 -04:00

Update modules/setting/actions.go

Signed-off-by: silverwind <me@silverwind.io>
This commit is contained in:
silverwind 2025-07-04 17:09:16 +02:00 committed by GitHub
parent 13cb941e1c
commit 2e8c7d41a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -66,7 +66,7 @@ func (c logCompression) IsNone() bool {
}
func (c logCompression) IsZstd() bool {
return c == "" || strings.EqualFold(string(c), "zstd")
return c == "" || string(c) == "zstd"
}
func loadActionsFrom(rootCfg ConfigProvider) error {