summaryrefslogtreecommitdiffstats
path: root/src/walk.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/walk.rs')
-rw-r--r--src/walk.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/walk.rs b/src/walk.rs
index 64ea982..15a4aa5 100644
--- a/src/walk.rs
+++ b/src/walk.rs
@@ -33,10 +33,8 @@ fn walk(tx: channel::Sender<Message>, entries: &[PathBuf], filesize_type: Filesi
let mut children = vec![];
match fs::read_dir(entry) {
Ok(child_entries) => {
- for child_entry in child_entries {
- if let Ok(child_entry) = child_entry {
- children.push(child_entry.path());
- }
+ for child_entry in child_entries.flatten() {
+ children.push(child_entry.path());
}
}
Err(_) => {