chore: fixes found in review

Signed-off-by: Xe Iaso <me@xeiaso.net>
This commit is contained in:
Xe Iaso
2025-07-04 20:37:32 +00:00
parent 41993466a1
commit 364622d890
3 changed files with 4 additions and 4 deletions

View File

@@ -188,9 +188,9 @@ func ParseConfig(ctx context.Context, fin io.Reader, fname string, defaultDiffic
store, err := stFac.Build(ctx, c.Store.Parameters)
if err != nil {
validationErrs = append(validationErrs, err)
} else {
result.Store = store
}
result.Store = store
case false:
validationErrs = append(validationErrs, config.ErrUnknownStoreBackend)
}