浏览代码

Merge pull request #5154 from crobibero/skip-attributes

Claus Vium 4 年之前
父节点
当前提交
5f63c33557
共有 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
             };
         }