Merge pull request #5154 from crobibero/skip-attributes

This commit is contained in:
Claus Vium 2021-02-03 08:18:39 +01:00 committed by GitHub
commit 5f63c33557
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -684,7 +684,9 @@ namespace Emby.Server.Implementations.IO
return new EnumerationOptions
{
RecurseSubdirectories = recursive,
IgnoreInaccessible = true
IgnoreInaccessible = true,
// Don't skip any files.
AttributesToSkip = 0
};
}