Explorar o código

Merge pull request #5154 from crobibero/skip-attributes

(cherry picked from commit 5f63c3355794fb2da639b0c4c87c19753b3361ad)
Signed-off-by: Joshua M. Boniface <joshua@boniface.me>
Claus Vium %!s(int64=4) %!d(string=hai) anos
pai
achega
9f3cebf493
Modificáronse 1 ficheiros con 3 adicións e 1 borrados
  1. 3 1
      Emby.Server.Implementations/IO/ManagedFileSystem.cs

+ 3 - 1
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
             };
         }