about summary refs log tree commit diff stats
path: root/internal
diff options
context:
space:
mode:
authorAlan Pearce2024-05-17 15:47:53 +0200
committerAlan Pearce2024-05-17 15:47:53 +0200
commit43fe431c3aff36d52a630ca670f9fc4ee161962f (patch)
treec1fe104e64059942fb622f29f6ce25aa98f0d954 /internal
parent02589f637da77501030f0f37b3aafe2ff4c2c304 (diff)
downloadsearchix-43fe431c3aff36d52a630ca670f9fc4ee161962f.tar.lz
searchix-43fe431c3aff36d52a630ca670f9fc4ee161962f.tar.zst
searchix-43fe431c3aff36d52a630ca670f9fc4ee161962f.zip
fix: don't panic when re-indexing if fetcher did not update
Diffstat (limited to 'internal')
-rw-r--r--internal/fetcher/download.go2
-rw-r--r--internal/fetcher/nixpkgs-channel.go2
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
 		}
 	}