Преглед на файлове

Don't skip hidden files

crobibero преди 4 години
родител
ревизия
8d902478a0
променени са 1 файла, в които са добавени 3 реда и са изтрити 1 реда
  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
             };
         }