fix: don't panic when re-indexing if fetcher did not update
2 files changed, 2 insertions(+), 2 deletions(-)
M internal/fetcher/download.go → internal/fetcher/download.go
@@ -62,7 +62,7 @@ return } // don't bother to issue requests for the later files if !updated { - return + break } }
M internal/fetcher/nixpkgs-channel.go → internal/fetcher/nixpkgs-channel.go
@@ -60,7 +60,7 @@ return } // don't bother to issue requests for the later files if !updated { - return + break } }