diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-02-03 08:18:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-03 08:18:39 +0100 |
| commit | 5f63c3355794fb2da639b0c4c87c19753b3361ad (patch) | |
| tree | 13ee936ceb4165c48fef96d52685962af1eea71f /Emby.Server.Implementations/IO/ManagedFileSystem.cs | |
| parent | 4bcf684b7241af10c15459cf83cb93e536471c8c (diff) | |
| parent | 8d902478a0f44a90f947feaa32a889423bbaa40b (diff) | |
Merge pull request #5154 from crobibero/skip-attributes
Diffstat (limited to 'Emby.Server.Implementations/IO/ManagedFileSystem.cs')
| -rw-r--r-- | Emby.Server.Implementations/IO/ManagedFileSystem.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/IO/ManagedFileSystem.cs b/Emby.Server.Implementations/IO/ManagedFileSystem.cs index 5ebc9b61b..c0e757543 100644 --- a/Emby.Server.Implementations/IO/ManagedFileSystem.cs +++ b/Emby.Server.Implementations/IO/ManagedFileSystem.cs @@ -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 }; } |
