fix: nil pointer when updating all sources
Alan Pearce alan@alanpearce.eu
Fri, 17 May 2024 16:54:54 +0200
1 files changed, 1 insertions(+), 1 deletions(-)
jump to
M internal/importer/main.go → internal/importer/main.go
@@ -33,7 +33,7 @@ forceUpdate = forceUpdate || (onlyUpdateSources != nil && len(*onlyUpdateSources) > 0) for name, source := range cfg.Importer.Sources { - if len(*onlyUpdateSources) > 0 { + if onlyUpdateSources != nil && len(*onlyUpdateSources) > 0 { if !slices.Contains(*onlyUpdateSources, name) { continue }