|
|
@ -171,10 +171,13 @@ namespace MediaBrowser.Providers.MediaInfo
|
|
|
|
|
|
|
|
|
|
|
|
public bool HasChanged(IHasMetadata item, IDirectoryService directoryService)
|
|
|
|
public bool HasChanged(IHasMetadata item, IDirectoryService directoryService)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
var file = directoryService.GetFile(item.Path);
|
|
|
|
if (!string.IsNullOrWhiteSpace(item.Path))
|
|
|
|
if (file != null && file.LastWriteTimeUtc != item.DateModified)
|
|
|
|
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
var file = directoryService.GetFile(item.Path);
|
|
|
|
|
|
|
|
if (file != null && file.LastWriteTimeUtc != item.DateModified)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (item.SupportsLocalMetadata)
|
|
|
|
if (item.SupportsLocalMetadata)
|
|
|
|