From 0a4adc83955ad3425b1b2f8e2db1239744c73898 Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Fri, 25 Apr 2025 21:12:10 +0200 Subject: [PATCH] Fix: add some more exclusion paths --- music_assistant/providers/filesystem_local/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music_assistant/providers/filesystem_local/helpers.py b/music_assistant/providers/filesystem_local/helpers.py index 1f49ff0e..5b431adb 100644 --- a/music_assistant/providers/filesystem_local/helpers.py +++ b/music_assistant/providers/filesystem_local/helpers.py @@ -8,7 +8,7 @@ from dataclasses import dataclass from music_assistant.helpers.compare import compare_strings -IGNORE_DIRS = ("recycle", "Recently-Snaphot") +IGNORE_DIRS = ("recycle", "Recently-Snaphot", "#recycle", "System Volume Information", "lost+found") @dataclass -- 2.34.1