From 967a349b292ac5593eca2abbba3e2bcd117226c5 Mon Sep 17 00:00:00 2001 From: JesterHodl Date: Sun, 23 Aug 2026 19:31:11 +0200 Subject: [PATCH] fix: follow symlinks when scanning shared folder --- src-tauri/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index 6d00e05..979fc1d 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -697,7 +697,7 @@ fn index_path_with_progress( // Small commits make verified tracks visible without holding the database // while the rest of a large collection is scanned. for entry in WalkDir::new(folder) - .follow_links(false) + .follow_links(true) .into_iter() .filter_map(Result::ok) .filter(|entry| entry.file_type().is_file() && supported_audio_path(entry.path()))