display metadata fields locks

This commit is contained in:
Luis Miguel Almánzar 2013-06-15 01:30:48 -04:00
parent 1fc15d543f
commit 2a2c049275
2 changed files with 12 additions and 2 deletions

View File

@ -265,7 +265,9 @@ namespace MediaBrowser.Api
item.Language = request.Language;
item.OfficialRating = request.OfficialRating;
item.CustomRating = request.CustomRating;
item.DontFetchMeta = !(request.EnableInternetProviders ?? true);
item.LockedFields = request.LockedFields;
item.LockedImages = request.LockedImages;
foreach (var pair in request.ProviderIds.ToList())
{

View File

@ -25,6 +25,14 @@ namespace MediaBrowser.Model.Entities
/// <summary>
/// The tags
/// </summary>
Tags
Tags,
/// <summary>
/// The name
/// </summary>
Name,
/// <summary>
/// The overview
/// </summary>
Overview
}
}