|
|
@ -120,10 +120,14 @@ namespace MediaBrowser.Controller.Providers
|
|
|
|
{
|
|
|
|
{
|
|
|
|
file = _fileSystem.GetFileInfo(path);
|
|
|
|
file = _fileSystem.GetFileInfo(path);
|
|
|
|
|
|
|
|
|
|
|
|
if (file != null)
|
|
|
|
if (file != null && file.Exists)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
_fileCache.TryAdd(path, file);
|
|
|
|
_fileCache.TryAdd(path, file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return file;
|
|
|
|
return file;
|
|
|
|