fix: always re-index if storage is (re-)created
1 file changed, 5 insertions(+), 0 deletions(-)
changed files
M internal/index/search.go → internal/index/search.go
@@ -36,7 +36,12 @@ index bleve.Index config *config.Config store *storage.Store log *log.Logger + exists bool meta *Meta +} + +func (index *ReadIndex) Exists() bool { + return index.exists } func (index *ReadIndex) LastUpdated() time.Time {