removed some preemptive file filtering

This commit is contained in:
Luke Pulverenti
2013-06-10 22:51:23 -04:00
parent 7b9a5ba3cb
commit fab983b6dc
3 changed files with 8 additions and 22 deletions

View File

@@ -460,12 +460,6 @@ namespace MediaBrowser.Server.Implementations.Library
fileInfo = fileInfo ?? FileSystem.GetFileSystemInfo(path);
if (!fileInfo.Exists)
{
_logger.Error("Path in library does not exist or is unavailable: " + path);
return null;
}
var args = new ItemResolveArgs(ConfigurationManager.ApplicationPaths)
{
Parent = parent,