diff options
author | Alan Pearce | 2024-05-17 15:47:53 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-17 15:47:53 +0200 |
commit | 43fe431c3aff36d52a630ca670f9fc4ee161962f (patch) | |
tree | c1fe104e64059942fb622f29f6ce25aa98f0d954 | |
parent | 02589f637da77501030f0f37b3aafe2ff4c2c304 (diff) | |
download | searchix-43fe431c3aff36d52a630ca670f9fc4ee161962f.tar.lz searchix-43fe431c3aff36d52a630ca670f9fc4ee161962f.tar.zst searchix-43fe431c3aff36d52a630ca670f9fc4ee161962f.zip |
fix: don't panic when re-indexing if fetcher did not update
-rw-r--r-- | internal/fetcher/download.go | 2 | ||||
-rw-r--r-- | internal/fetcher/nixpkgs-channel.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/fetcher/download.go b/internal/fetcher/download.go index 6bce5a8..7657825 100644 --- a/internal/fetcher/download.go +++ b/internal/fetcher/download.go @@ -62,7 +62,7 @@ func (i *DownloadFetcher) FetchIfNeeded( } // don't bother to issue requests for the later files if !updated { - return + break } } diff --git a/internal/fetcher/nixpkgs-channel.go b/internal/fetcher/nixpkgs-channel.go index aa1a09d..c135641 100644 --- a/internal/fetcher/nixpkgs-channel.go +++ b/internal/fetcher/nixpkgs-channel.go @@ -60,7 +60,7 @@ func (i *NixpkgsChannelFetcher) FetchIfNeeded( } // don't bother to issue requests for the later files if !updated { - return + break } } |