updated service stack

pull/702/head
Luke Pulverenti 11 years ago
parent 0d4e042d89
commit d537826d81

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

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

Loading…
Cancel
Save