diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-02-03 08:18:39 +0100 |
|---|---|---|
| committer | Joshua M. Boniface <joshua@boniface.me> | 2021-02-21 13:29:02 -0500 |
| commit | 9f3cebf49399c890d173ba5d3ebef106f2b27675 (patch) | |
| tree | fdb2401e96b97d4b2116172d999ddbe040ce1933 /Emby.Server.Implementations/IO/ManagedFileSystem.cs | |
| parent | 20e985a0d1e78a6e628f44cec9abc84832a50e80 (diff) | |
Merge pull request #5154 from crobibero/skip-attributes
(cherry picked from commit 5f63c3355794fb2da639b0c4c87c19753b3361ad)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
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 }; } |
