Fix compile error

This commit is contained in:
Mikayla Maki 2023-05-09 10:04:44 -07:00 committed by Mikayla Maki
parent 67491632cb
commit bd98f78101
No known key found for this signature in database

View file

@ -2892,6 +2892,8 @@ impl BackgroundScanner {
entry.statuses = statuses; entry.statuses = statuses;
}); });
} else if let Some(repo) = snapshot.repo_for(&path) { } else if let Some(repo) = snapshot.repo_for(&path) {
let repo_path = repo.work_directory.relativize(&snapshot, &path)?;
let status = { let status = {
let local_repo = snapshot.get_local_repo(&repo)?; let local_repo = snapshot.get_local_repo(&repo)?;
// Short circuit if we've already scanned everything // Short circuit if we've already scanned everything
@ -2899,7 +2901,6 @@ impl BackgroundScanner {
return None; return None;
} }
let repo_path = repo.work_directory.relativize(&snapshot, &path)?;
let git_ptr = local_repo.repo_ptr.lock(); let git_ptr = local_repo.repo_ptr.lock();
git_ptr.file_status(&repo_path)? git_ptr.file_status(&repo_path)?
}; };