commit
f559543bd2
|
@ -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;
|
||||||
|
|
|
@ -51,6 +51,11 @@ namespace MediaBrowser.XbmcMetadata.Savers
|
||||||
//}
|
//}
|
||||||
|
|
||||||
list.Add(Path.ChangeExtension(item.Path, ".nfo"));
|
list.Add(Path.ChangeExtension(item.Path, ".nfo"));
|
||||||
|
|
||||||
|
if (!item.IsInMixedFolder)
|
||||||
|
{
|
||||||
|
list.Add(Path.Combine(item.ContainingFolderPath, "movie.nfo"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return list;
|
return list;
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
[assembly: AssemblyVersion("3.2.25.10")]
|
[assembly: AssemblyVersion("3.2.25.11")]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user