浏览代码

update dvd parsing

Luke Pulverenti 9 年之前
父节点
当前提交
c7b10864fe
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs

+ 1 - 1
MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs

@@ -708,7 +708,7 @@ namespace MediaBrowser.Providers.MediaInfo
 
 
             // Try to eliminate menus and intros by skipping all files at the front of the list that are less than the minimum size
             // Try to eliminate menus and intros by skipping all files at the front of the list that are less than the minimum size
             // Once we reach a file that is at least the minimum, return all subsequent ones
             // Once we reach a file that is at least the minimum, return all subsequent ones
-            var allVobs = _fileSystem.GetFiles(root)
+            var allVobs = _fileSystem.GetFiles(root, true)
                 .Where(file => string.Equals(file.Extension, ".vob", StringComparison.OrdinalIgnoreCase))
                 .Where(file => string.Equals(file.Extension, ".vob", StringComparison.OrdinalIgnoreCase))
                 .OrderBy(i => i.FullName)
                 .OrderBy(i => i.FullName)
                 .ToList();
                 .ToList();