Skip to content

Commit

Permalink
Merge pull request #56 from P1n3appl3/follow-links
Browse files Browse the repository at this point in the history
Follow symlinks
  • Loading branch information
danyspin97 authored Apr 16, 2024
2 parents eb0422c + 8094e2b commit 4d07bc0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions daemon/src/filelist_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ impl Filelist {
fn populate(&mut self) {
self.filelist = Arc::new(
WalkDir::new(&self.path)
.follow_links(true)
.sort_by_file_name()
.into_iter()
.filter_map(|e| e.ok())
Expand Down

0 comments on commit 4d07bc0

Please sign in to comment.