updated service stack

This commit is contained in:
Luke Pulverenti 2014-03-01 12:53:56 -05:00
parent 0d4e042d89
commit d537826d81
2 changed files with 6 additions and 0 deletions

View File

@ -312,6 +312,7 @@ namespace MediaBrowser.Providers.Manager
// Only one local provider allowed per item
hasLocalMetadata = true;
item.IsUnidentified = false;
break;
}

View File

@ -58,6 +58,11 @@ namespace MediaBrowser.Providers.Manager
target.OfficialRatingDescription = source.OfficialRatingDescription;
}
if (replaceData || string.IsNullOrEmpty(target.CustomRating))
{
target.CustomRating = source.CustomRating;
}
if (!lockedFields.Contains(MetadataFields.Overview))
{
if (replaceData || string.IsNullOrEmpty(target.Overview))