mirror of
https://github.com/sigoden/dufs.git
synced 2026-04-09 00:59:02 +03:00
fix: some search results missing due to broken symlinks (#665)
This commit is contained in:
@@ -1881,10 +1881,14 @@ where
|
|||||||
for dir in access_paths.entry_paths(&path) {
|
for dir in access_paths.entry_paths(&path) {
|
||||||
let mut it = WalkDir::new(&dir).follow_links(true).into_iter();
|
let mut it = WalkDir::new(&dir).follow_links(true).into_iter();
|
||||||
it.next();
|
it.next();
|
||||||
while let Some(Ok(entry)) = it.next() {
|
while let Some(entry) = it.next() {
|
||||||
if !running.load(atomic::Ordering::SeqCst) {
|
if !running.load(atomic::Ordering::SeqCst) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
let entry = match entry {
|
||||||
|
Ok(v) => v,
|
||||||
|
Err(_) => continue,
|
||||||
|
};
|
||||||
let entry_path = entry.path();
|
let entry_path = entry.path();
|
||||||
let base_name = get_file_name(entry_path);
|
let base_name = get_file_name(entry_path);
|
||||||
let is_dir = entry.file_type().is_dir();
|
let is_dir = entry.file_type().is_dir();
|
||||||
|
|||||||
Reference in New Issue
Block a user