Updates ignore path filtering so files in a folder in an ignored folder will be ignored correctly

This commit is contained in:
Trenton H
2023-02-14 12:54:03 -08:00
parent 0d1a8d6d2f
commit c08f0054da
4 changed files with 135 additions and 30 deletions

View File

@@ -673,7 +673,7 @@ CONSUMER_IGNORE_PATTERNS = list(
json.loads(
os.getenv(
"PAPERLESS_CONSUMER_IGNORE_PATTERNS",
'[".DS_STORE/*", "._*", ".stfolder/*", ".stversions/*", ".localized/*", "desktop.ini"]', # noqa: E501
'[".DS_STORE/*", "._*", ".stfolder/*", ".stversions/*", ".localized/*", "desktop.ini", "@eaDir/*"]', # noqa: E501
),
),
)