Faster startup by loading existing index without any checks, then incremental scanning to update.

This commit is contained in:
2026-05-29 22:25:13 +00:00
parent 25e9bab57b
commit 550f67531a
8 changed files with 153 additions and 93 deletions
+1 -1
View File
@@ -273,7 +273,7 @@ async function refreshRoots() {
path: r.path,
status: r.status,
})
if (r.status === "ready" || r.status === "scanning" || r.status === "loading") {
if (r.status === "ready" || r.status === "scanning") {
activeIds.push(r.root_id)
}
}