fix offense

This commit is contained in:
A.Unger
2021-03-13 21:52:00 +01:00
parent 837b1ba96d
commit 5594c142dd

View File

@@ -15,7 +15,7 @@ func OverrideDefaultString(v, def string) string {
// value by providing one. A value different than zero would mean that it was read from a config file either from an
// extension or from a higher source (i.e: ocis command).
func OverrideDefaultBool(v, def bool) bool {
if v != false {
if v {
return v
}