Browse Source

Don't skip hidden files

crobibero 4 years ago
parent
commit
8d902478a0
1 changed files with 3 additions and 1 deletions
  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
             };
         }