Merge pull request #1298 from MediaBrowser/master

merge from master
This commit is contained in:
Luke 2015-12-03 12:07:31 -05:00
commit 80230dcb5c

View file

@ -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
// 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))
.OrderBy(i => i.FullName)
.ToList();