update components

This commit is contained in:
Luke Pulverenti
2016-02-29 11:23:30 -05:00
parent a9804ed2ef
commit d0ca9b1c07
2 changed files with 4 additions and 1 deletions

View File

@@ -63,7 +63,8 @@ namespace MediaBrowser.Controller.Providers
try
{
// using EnumerateFileSystemInfos doesn't handle reparse points (symlinks)
var list = _fileSystem.GetFileSystemEntries(path);
var list = _fileSystem.GetFileSystemEntries(path)
.ToList();
// Seeing dupes on some users file system for some reason
foreach (var item in list)