check item path for null/empty
This commit is contained in:
parent
6f20a8ca05
commit
de0f97159b
|
@ -171,10 +171,13 @@ namespace MediaBrowser.Providers.MediaInfo
|
|||
|
||||
public bool HasChanged(IHasMetadata item, IDirectoryService directoryService)
|
||||
{
|
||||
var file = directoryService.GetFile(item.Path);
|
||||
if (file != null && file.LastWriteTimeUtc != item.DateModified)
|
||||
if (!string.IsNullOrWhiteSpace(item.Path))
|
||||
{
|
||||
return true;
|
||||
var file = directoryService.GetFile(item.Path);
|
||||
if (file != null && file.LastWriteTimeUtc != item.DateModified)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
if (item.SupportsLocalMetadata)
|
||||
|
|
Loading…
Reference in New Issue
Block a user