remove generic video excludes

This commit is contained in:
Luke Pulverenti
2015-01-08 22:27:44 -05:00
parent f96b4083a0
commit baf5e0c18b
3 changed files with 0 additions and 26 deletions

View File

@@ -54,15 +54,6 @@ namespace MediaBrowser.LocalMetadata.Savers
// Check parent for null to avoid running this against things like video backdrops
if (video != null && !(item is Episode) && !video.IsOwnedItem)
{
// If it's a plain video, skip if content type is unset (unless editing)
if (video.GetType() == typeof(Video))
{
if (updateType < ItemUpdateType.MetadataEdit && string.IsNullOrEmpty(_libraryManager.GetContentType(video)))
{
return false;
}
}
return updateType >= ItemUpdateType.MetadataDownload;
}